POST
/
api
/
v1
/
submission
/
bulkupdate
curl --request POST \
  --url https://vision.pingintel.com/api/v1/submission/bulkupdate \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "ids": [
    "<string>"
  ],
  "changes": [
    {
      "action": "claim",
      "parameters": {}
    }
  ]
}'
{
  "results": [
    [
      {
        "id": "<string>",
        "updated_data": [
          [
            {
              "claimed_by_id": 123,
              "workflow_status_id": 123
            }
          ]
        ],
        "error": "<string>"
      }
    ]
  ]
}

Authorizations

Authorization
string
header
required

Supports Token-prefixed API keys and Bearer-prefixed JWT-based authentication.

Body

Response

200
application/json

The response is of type object.