curl --request POST \
--url http://staging.api.commenda.io/api/v1/key-persons \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"firstName": "Bill",
"lastName": "Lumbergh",
"phoneNumber": "+13021234567",
"email": "yaacov@commenda.io",
"countryOfNationality": "US",
"countryOfResidence": "US",
"dateOfBirth": "1995-10-22",
"countrySpecificInfo": {
"IN": {
"addressProofFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"aadharCardFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"panCardFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"hasDigitalSignatureCertificate": true,
"hasDirectorIdNumber": true,
"directorIdNumber": "12345678"
}
}
}'
{
"firstName": "Bill",
"lastName": "Lumbergh",
"phoneNumber": "+13021234567",
"email": "yaacov@commenda.io",
"countryOfNationality": "US",
"countryOfResidence": "US",
"dateOfBirth": "1995-10-22",
"countrySpecificInfo": {
"IN": {
"addressProofFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"aadharCardFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"panCardFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"hasDigitalSignatureCertificate": true,
"hasDirectorIdNumber": true,
"directorIdNumber": "12345678"
}
}
}
Add a new key person.
curl --request POST \
--url http://staging.api.commenda.io/api/v1/key-persons \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"firstName": "Bill",
"lastName": "Lumbergh",
"phoneNumber": "+13021234567",
"email": "yaacov@commenda.io",
"countryOfNationality": "US",
"countryOfResidence": "US",
"dateOfBirth": "1995-10-22",
"countrySpecificInfo": {
"IN": {
"addressProofFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"aadharCardFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"panCardFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"hasDigitalSignatureCertificate": true,
"hasDirectorIdNumber": true,
"directorIdNumber": "12345678"
}
}
}'
{
"firstName": "Bill",
"lastName": "Lumbergh",
"phoneNumber": "+13021234567",
"email": "yaacov@commenda.io",
"countryOfNationality": "US",
"countryOfResidence": "US",
"dateOfBirth": "1995-10-22",
"countrySpecificInfo": {
"IN": {
"addressProofFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"aadharCardFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"panCardFileId": "2535af08-a139-4d0c-9827-1651e46dfbcf",
"hasDigitalSignatureCertificate": true,
"hasDirectorIdNumber": true,
"directorIdNumber": "12345678"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Information about a key person associated with a company, potentially linked to incorporation requests or corporations.
Key person created successfully.
Information about a key person associated with a company, potentially linked to incorporation requests or corporations.
Was this page helpful?