Skip to main content
DELETE
/
specifications
/
batch
Delete multiple specifications
curl --request DELETE \
  --url https://api.galtea.ai/specifications/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "id_1",
    "id_2"
  ]
}
'
{
  "error": "Error type",
  "message": "Error message description"
}

Authorizations

Authorization
string
header
required

API key authorization. Pass your API key in the Authorization header as a Bearer token. Both new (gsk_*) and legacy (gsk-) API keys are accepted, e.g. Authorization: Bearer gsk_... or Authorization: Bearer gsk-....

Body

application/json
ids
string[]
required

Array of specification IDs to delete

Example:
["id_1", "id_2"]

Response

Specifications deleted successfully