Skip to main content
PATCH
/
project
/
{id}
/
schema
Merge and update project schema
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"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.basic.tech/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Path Parameters

id
string
required

Unique identifier of the project

Body

application/json
schema
object
required

Schema changes to merge with the existing schema

Response

Schema merged and updated successfully

Schema merged and updated successfully

data
object