DID Routing

Submit KYC details

Submit the KYC (Know Your Customer) details required by Indian telecom regulations before a business number can go live. Verify as an `individual` (PAN details) or as a `business` (PAN plus business name and GST number).

POST
/dids/managed/{jobId}/kyc

Submit the KYC (Know Your Customer) details required by Indian telecom regulations before a business number can go live. Verify as an individual (PAN details) or as a business (PAN plus business name and GST number).

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 from the select step.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/dids/managed/string/kyc" \  -H "Content-Type: application/json" \  -d '{    "accountType": "business",    "fullName": "Priya Sharma",    "email": "priya@acme.in",    "phone": "+919876543210",    "billingAddress": "221B MG Road, Bengaluru, KA 560001",    "panNumber": "ABCDE1234F",    "panHolderName": "Priya Sharma",    "businessName": "Acme Retail Pvt Ltd",    "gstNumber": "29ABCDE1234F1Z5"  }'
{  "id": "job_9f2ka",  "status": "kyc_pending",  "selectedDidNumber": "+911408620000",  "steps": [    {      "label": "Number reserved",      "status": "completed"    },    {      "label": "KYC verified",      "status": "current"    },    {      "label": "Number purchased & assigned",      "status": "pending"    },    {      "label": "Inbound routing configured",      "status": "pending"    },    {      "label": "Status webhook configured",      "status": "pending"    },    {      "label": "Ready for inbound calls",      "status": "pending"    }  ]}
{  "statusCode": 400,  "message": [    "name should not be empty"  ],  "error": "Bad Request"}
{  "statusCode": 401,  "message": "Unauthorized",  "error": "Unauthorized"}