Skip to main content
POST
/
catchAll
/
continue
Continue job
curl --request POST \
  --url https://catchall.newscatcherapi.com/catchAll/continue \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "job_id": "af7a26d6-cf0b-458c-a6ed-4b6318c74da3",
  "new_limit": 100
}
'
{
"job_id": "af7a26d6-cf0b-458c-a6ed-4b6318c74da3",
"previous_limit": 10,
"new_limit": 100,
"status": "accepted"
}

Authorizations

x-api-key
string
header
required

API key for authentication.

Body

application/json
job_id
string<uuid>
required

Job identifier of the completed job to continue.

Example:

"af7a26d6-cf0b-458c-a6ed-4b6318c74da3"

new_limit
integer
required

New record limit for continued processing. Must be greater than the previous limit.

Required range: x >= 1
Example:

100

Response

Job continuation accepted

job_id
string<uuid>
required

Job identifier for the continued job.

Example:

"af7a26d6-cf0b-458c-a6ed-4b6318c74da3"

new_limit
integer
required

New record limit after continuation.

Example:

100

previous_limit
integer

Previous record limit before continuation.

Example:

10

status
string
default:accepted

Confirmation that the continuation request was accepted.

Example:

"accepted"