Create incorporation request
curl --request POST \
--url http://staging.api.commenda.io/api/v1/incorporation-requests \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"country": "US",
"corporationTypeInfo": {
"US": {
"state": "DE",
"corporationType": "CCorp"
},
"IN": {
"state": "KA",
"corporationType": "PvtLtd"
}
}
}'
{
"data": {
"id": "<string>",
"country": "US",
"corporationTypeInfo": {
"US": {
"state": "DE",
"corporationType": "CCorp"
},
"IN": {
"state": "KA",
"corporationType": "PvtLtd"
}
},
"status": "NotSubmitted",
"signedFormUrl": "https://app.commenda.io/incorporate/us/bf98ab92-4271-4ce8-a77a-742abefad853?key=1MO/rp2/LekU9aI3dNW5nj19U+VLw7PF1GOo5unzyR4"
},
"message": "Successfully created incorporation request."
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
Unique identifier for a company.
ISO 3166 2-letter country code. Ex: US, IN, GB.
"US"
Exactly one of these fields should be set, matching the selected incorporation country. More options coming soon.
US-specific incorporation options.
India-specific incorporation options.
Response
Unique identifier for this incorporation request.
ISO 3166 2-letter country code. Ex: US, IN, GB.
"US"
Exactly one of these fields should be set, matching the selected incorporation country. More options coming soon.
US-specific incorporation options.
India-specific incorporation options.
NotSubmitted
, InProgress
, NeedsAdditionalInfo
, Succeeded
, Failed
A signed URL that customers can visit to upload their incorporation information. Valid for 24 hours.
"https://app.commenda.io/incorporate/us/bf98ab92-4271-4ce8-a77a-742abefad853?key=1MO/rp2/LekU9aI3dNW5nj19U+VLw7PF1GOo5unzyR4"
"Successfully created incorporation request."
Was this page helpful?
curl --request POST \
--url http://staging.api.commenda.io/api/v1/incorporation-requests \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"country": "US",
"corporationTypeInfo": {
"US": {
"state": "DE",
"corporationType": "CCorp"
},
"IN": {
"state": "KA",
"corporationType": "PvtLtd"
}
}
}'
{
"data": {
"id": "<string>",
"country": "US",
"corporationTypeInfo": {
"US": {
"state": "DE",
"corporationType": "CCorp"
},
"IN": {
"state": "KA",
"corporationType": "PvtLtd"
}
},
"status": "NotSubmitted",
"signedFormUrl": "https://app.commenda.io/incorporate/us/bf98ab92-4271-4ce8-a77a-742abefad853?key=1MO/rp2/LekU9aI3dNW5nj19U+VLw7PF1GOo5unzyR4"
},
"message": "Successfully created incorporation request."
}