Provisioning Overview

The Provision SPI describes the endpoint and payload for provisioning API requests to your external database and the payload for their success and failure responses.

Provision API requests occur when you initially connect your endpoint to your site or change its settings.

A response status of anything other than a 200 status will result in the configuration of the external collection not being saved by the Wix Editor.

Did this help?

POST

Provision


Setup initial connectivity between your adapter and the wix-data backend.

Request
This endpoint does not take any parameters.
Response Object
Returns an empty object.
Provisioning request.
Request
cURL
curl -X POST 'https://mysql-adaptor.com/provision' \ --header 'Content-Type: application/json' \ --data-raw '{ "requestContext": { "settings": { "secretKey": "myBigSecret" }, "installationId": "987fe654-3d21-4def-ab5c-6d78e90f123a", } }'
Response
JSON
{}
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?