DID Routing

Get provisioning status

Poll a provisioning job. KYC verification state is refreshed automatically on each poll, so the job advances to `kyc_verified` on its own once the applicant finishes DigiLocker.

GET
/dids/managed/{jobId}

Poll a provisioning job. KYC verification state is refreshed automatically on each poll, so the job advances to kyc_verified on its own once the applicant finishes DigiLocker.

Authorization

ApiKeyAuth
X-API-Key<token>

Voice platform authentication secret. Create one from the API Keys endpoint or your dashboard.

In: header

Path Parameters

jobId*string

Provisioning job id.

Response Body

application/json

application/json

curl -X GET "https://example.com/dids/managed/string"
{  "id": "job_9f2ka",  "status": "kyc_verified",  "selectedDidNumber": "+911408620000",  "steps": [    {      "label": "Number reserved",      "status": "completed"    },    {      "label": "KYC verified",      "status": "completed"    },    {      "label": "Number purchased & assigned",      "status": "current"    },    {      "label": "Inbound routing configured",      "status": "pending"    },    {      "label": "Status webhook configured",      "status": "pending"    },    {      "label": "Ready for inbound calls",      "status": "pending"    }  ]}
{  "statusCode": 401,  "message": "Unauthorized",  "error": "Unauthorized"}