SnozeDevelopers
API referenceActions

Run the action behind a database button field

Resolves the action configured on a record's button field, maps the field's bindings from that record, and runs it with the record context attached to the input. Requires the `actions:run` permission plus edit access to the bound action; a field that is not a button, an unreadable button configuration, or a disabled action is rejected with a validation error. Send an `Idempotency-Key` header to make retries safe; a replay within the window returns the original response.

POST
/v1/workspaces/{workspaceId}/databases/{databaseId}/records/{recordId}/button-fields/{fieldId}/run
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
recordId*string
fieldId*string

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/v1/workspaces/string/databases/string/records/string/button-fields/string/run"
{  "data": {    "id": "string",    "actionId": "string",    "workspaceId": "string",    "status": "started",    "startedAt": "string",    "completedAt": "string",    "error": "string",    "result": {},    "input": {},    "stepResults": {      "property1": {        "stepId": "string",        "index": 0,        "kind": "string",        "status": "pending",        "result": {},        "error": "string",        "startedAt": "string",        "completedAt": "string"      },      "property2": {        "stepId": "string",        "index": 0,        "kind": "string",        "status": "pending",        "result": {},        "error": "string",        "startedAt": "string",        "completedAt": "string"      }    }  }}