SnozeDevelopers
API referenceDatabases

Add a validation rule to a database

Creates a rule whose `condition` formula must evaluate true for a record to be valid: `block` severity refuses the write and surfaces `message`, while `warn` lets the write through and records the message. Requires the `databases:write` permission and rejects a condition that does not parse. Send an `Idempotency-Key` header to make retries safe; a replay within the window returns the original response.

POST
/v1/workspaces/{workspaceId}/databases/{databaseId}/validation-rules
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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/v1/workspaces/string/databases/string/validation-rules" \  -H "Content-Type: application/json" \  -d '{    "label": "string",    "condition": "string",    "message": "string"  }'
{  "data": {    "id": "string",    "workspaceId": "string",    "databaseId": "string",    "label": "string",    "condition": "string",    "message": "string",    "severity": "block",    "fieldKey": "string",    "enabled": true,    "order": 0,    "createdAt": "string",    "updatedAt": "string"  }}