Skip to main content
POST
/
lists
/
{listId}
/
import-jobs
/
bulk-pause
Bulk pause import jobs
curl --request POST \
  --url https://inboxapp.com/api/v1/lists/{listId}/import-jobs/bulk-pause \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jobIds": [
    "<string>"
  ]
}
'
{
  "success": "<unknown>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.inboxapp.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

listId
string
required

The ID of the list.

Pattern: ^[0-9a-z]+$

Body

application/json
jobIds
string[]

Specific import job IDs to pause. Omit to pause all running and queued jobs.

Pattern: ^[0-9a-z]+$

Response

200 - application/json

OK

success
any
required