GET
/
incorporation-requests
/
{id}
curl --request GET \
  --url http://staging.api.commenda.io/api/v1/incorporation-requests/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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 updated incorporation request."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The unique identifier of the incorporation request to retrieve.

Response

200 - application/json
Information request update response
data
object
message
string
Example:

"Successfully updated incorporation request."