DELETE
/
api
/
v1
/
schemas
/
id
/
{schema_id}
curl --request DELETE \
  --url https://api.invaro.ai/api/v1/api/v1/schemas/id/{schema_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "message": "Schema deleted successfully"
  }
}

Path Parameters

schema_id
string
required

The unique identifier of the schema to delete.

Response

Success Response (200)
{
  "success": true,
  "data": {
    "message": "Schema deleted successfully"
  }
}

Examples

Delete a Schema

Curl
curl -X DELETE "https://api.invaro.ai/api/v1/schemas/id/b3376c85-86e0-476e-aee9-5f05afaa05ea" \
  -H "Authorization: Bearer your_api_key"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

schema_id
string
required

The unique identifier of the schema.

Response

200 - application/json
Schema deleted successfully
success
boolean
Example:

true

data
object