Skip to main content
POST
/
v1
/
issues
/
bulk
Bulk Issues
curl --request POST \
  --url https://api.example.com/v1/issues/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "<string>"
  ],
  "op": "<string>",
  "value": "<string>"
}
'
{
  "updated": 123,
  "failed": [
    {
      "id": "<string>",
      "code": "<string>",
      "message": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
ids
string[]
required
Required array length: 1 - 200 elements
op
string
required
value
string | null

Response

Successful Response

updated
integer
required
failed
BulkFailure · object[]
required