Skip to main content
GET
/
api
/
v1
/
batch-call
/
{batch_id}
/
status
Batch status and progress counts
curl --request GET \
  --url https://api.kupe.in/api/v1/batch-call/{batch_id}/status \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "batch": {},
    "status_counts": {
      "not_started": 123,
      "calling": 123,
      "completed": 123,
      "failed": 123,
      "no_answer": 123,
      "total": 123
    }
  }
}

Authorizations

x-api-key
string
header
default:YOUR_KUPE_API_KEY
required

Kupe dashboard API key for your user.

Path Parameters

batch_id
string<uuid>
required

Response

200 - application/json

Batch + counts

success
boolean
data
object