Move Record
Move a record to a different list (column/status).
POST /v1/move-record
Move a record to a different list (column/status). Use list-lists to get available list IDs for the workspace.
Request body
| Field | Type | Required | Description |
|---|---|---|---|
workspaceId | string | Yes | The workspace ID the record belongs to |
recordId | string | Yes | The record ID to move |
listId | string | Yes | The target list ID |
{
"workspaceId": "string",
"recordId": "string",
"listId": "string"
}Response
Returns the result of the operation.
Example
curl -X POST https://rest.blue.app/v1/move-record \
-H "Authorization: Bearer $BLUE_TOKEN" \
-H "blue-org-id: $BLUE_ORG_ID" \
-H "Content-Type: application/json" \
-d '{"workspaceId":"string","recordId":"string","listId":"string"}'