SnozeDevelopers
API referenceDatabases

Delete a relation and both of its fields

Removes the relation as a whole - both end fields and every link between records - in one transaction; there is no way to delete a single side. Requires the `databases:write` permission on both databases the relation joins, and responds with not-found when the relation has no end on the database in the path. Send an `Idempotency-Key` header to make retries safe; a replay within the window returns the original response.

DELETE
/v1/workspaces/{workspaceId}/databases/{databaseId}/relations/{relationId}
AuthorizationBearer <token>

Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.

In: header

Path Parameters

workspaceId*string
databaseId*string
relationId*string

Response Body

application/json

application/json

application/json

curl -X DELETE "https://example.com/v1/workspaces/string/databases/string/relations/string"
{  "data": {    "id": "string",    "workspaceId": "string",    "label": "string",    "fromDatabaseId": "string",    "fromFieldId": "string",    "fromCardinality": "one",    "toDatabaseId": "string",    "toFieldId": "string",    "toCardinality": "one",    "onDelete": "detach",    "createdAt": "string",    "updatedAt": "string"  }}