Skip to main content
POST
/
v1
/
ai
/
extract
/
batch
Extract Batch
curl --request POST \
  --url https://api.example.com/v1/ai/extract/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "filter": {},
  "issue_ids": [
    "<string>"
  ]
}
'
{
  "count": 123,
  "job_id": "<string>",
  "status": "queued"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Either an explicit issue_ids list OR a basic IssueFilters-shaped filter (status/source/pattern_id/risk_min/risk_max/date_from/date_to); exactly one of the two must be supplied.

filter
Filter · object | null
issue_ids
string[] | null
Required array length: 1 - 200 elements

Response

Successful Response

count
integer
required
job_id
string
required
status
string
default:queued