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

FieldTypeRequiredDescription
workspaceIdstringYesThe workspace ID the record belongs to
recordIdstringYesThe record ID to move
listIdstringYesThe 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"}'