Skip to main content
POST
https://agent.usedari.com
/
task
/
{org_id}
/
{endpoint_name}
/
pause
curl -X POST "https://agent.usedari.com/task/my-org/contact_form/pause?job_id=550e8400-e29b-41d4-a716-446655440000" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "success": true,
  "message": "Job paused successfully",
  "job_id": "550e8400-e29b-41d4-a716-446655440000",
  "previous_status": "running"
}
Pauses a running job. The browser session is preserved and the job can be resumed later.

Path Parameters

org_id
string
required
Organization ID
endpoint_name
string
required
Portal endpoint name

Query Parameters

job_id
string
required
UUID of the job to pause

Headers

X-API-Key
string
required
Organization API key

Response Fields

success
boolean
Whether the pause was successful
message
string
Status message
job_id
string
UUID of the paused job
previous_status
string
Job status before pausing
curl -X POST "https://agent.usedari.com/task/my-org/contact_form/pause?job_id=550e8400-e29b-41d4-a716-446655440000" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "success": true,
  "message": "Job paused successfully",
  "job_id": "550e8400-e29b-41d4-a716-446655440000",
  "previous_status": "running"
}