Incorporation Requests
Create incorporation request
POST
/
incorporation-requests
Copy
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"
}
}
}'
Copy
{
"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
application/json
Response
200
application/json
Incorporation request created successfully
The response is of type object
.
Was this page helpful?
Copy
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"
}
}
}'
Copy
{
"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."
}
Assistant
Responses are generated using AI and may contain mistakes.