POST
/
v1
/
matrix
/
bulk-status-update
Update multiple matrices status
curl --request POST \
  --url https://staging.api.us.aptlydone.com/matrix/v1/matrix/bulk-status-update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "matrixIds": [
    "d201b5f8-56ff-493b-a2f6-5822ef33823c",
    "b6042e13-dcbf-49e3-a2d4-ca20baf68ac8"
  ],
  "matrixStatusId": "bef367c7-8fa6-4c6c-92fb-fcd3adf00bc2"
}'
{
  "statusCode": 200,
  "timestamp": "2025-06-24T08:51:11.638Z",
  "message": "Success",
  "data": {
    "successCount": 5,
    "failureCount": 0,
    "successIds": [
      "eef73c08-9e42-4289-a982-eb2be34094a7",
      "30cf2dc5-1a88-4e94-a40c-dc54e0d05270"
    ],
    "failures": {
      "de9877f2-a97d-409c-ae77-cb1a35b16026": "Matrix not found",
      "f3a92dd3-a1a3-4031-b11c-4a657ebc3d10": "Unauthorized operation"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Matrix statuses updated successfully

The response is of type object.