Management APIs
cURL
curl --request PATCH \ --url https://api.basic.tech/project/{id}/schema \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "schema": {} }'
{ "data": { "id": "<string>", "project_id": "<string>", "schema": {}, "updated_at": "2023-11-07T05:31:56Z" } }
Merges the provided schema with the existing schema and creates a new version.
JWT Authorization Token header using the Bearer scheme
Unique identifier of the project
Schema merged and updated successfully