Skip to main content
POST
/
api
/
v1
/
sub-accounts
/
{sub_auth_id}
/
kyc
/
cin
/
confirm
CIN confirm
curl --request POST \
  --url https://api.vobiz.ai/api/v1/sub-accounts/{sub_auth_id}/kyc/cin/confirm \
  --header 'Content-Type: application/json' \
  --header 'X-Auth-ID: <api-key>' \
  --header 'X-Auth-Token: <api-key>' \
  --data '
{
  "company_name": "ACME PRIVATE LIMITED",
  "selected_cin": "U72900KA2024PTC123456"
}
'
import requests

url = "https://api.vobiz.ai/api/v1/sub-accounts/{sub_auth_id}/kyc/cin/confirm"

payload = {
"company_name": "ACME PRIVATE LIMITED",
"selected_cin": "U72900KA2024PTC123456"
}
headers = {
"X-Auth-ID": "<api-key>",
"X-Auth-Token": "<api-key>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {
'X-Auth-ID': '<api-key>',
'X-Auth-Token': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({company_name: 'ACME PRIVATE LIMITED', selected_cin: 'U72900KA2024PTC123456'})
};

fetch('https://api.vobiz.ai/api/v1/sub-accounts/{sub_auth_id}/kyc/cin/confirm', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "verification_type": "cin",
  "status": "verified",
  "cin": "U72900KA2024PTC123456"
}
Confirms the CIN you selected from the CIN Search results. Pass the company_name and the chosen selected_cin.
Authenticate with your parent main account’s X-Auth-ID and X-Auth-Token — the same credentials used everywhere else in the API.

Request body

FieldTypeRequiredDescription
company_namestringYesThe company name (should match the chosen search result).
selected_cinstringYesThe exact cin chosen from the CIN Search results.

Response example

200 OK
{
  "verification_type": "cin",
  "status": "verified",
  "cin": "U72900KA2024PTC123456"
}
Pass the selected_cin verbatim from a search result — don’t hand-type it. Confirming a CIN that wasn’t returned by search will not verify. This step persists the cin verification and recomputes kyc_calls_blocked.

Authorizations

X-Auth-ID
string
header
required

Your Vobiz account Auth ID

X-Auth-Token
string
header
required

Your Vobiz account Auth Token

Path Parameters

sub_auth_id
string
required

The sub-account's Auth ID.

Example:

"SA_XXXXXX"

Body

application/json
company_name
string
required
Example:

"ACME PRIVATE LIMITED"

selected_cin
string
required
Example:

"U72900KA2024PTC123456"

Response

200 - application/json

Verification result

Outcome of a single KYC verification step.

verification_type
enum<string>
required
Available options:
pan,
gst,
cin,
aadhaar
status
enum<string>
required
Available options:
verified,
failed,
pending
kyc_calls_blocked
boolean

Recomputed sub-account call-blocking state after this verification.

mock
boolean

Present and true on responses from the test-mode endpoints.