GET
/
incorporation-requests
curl --request GET \
  --url http://staging.api.commenda.io/api/v1/incorporation-requests \
  --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 retrieved incorporation requests."
}

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string

Cursor for pagination.

limit
integer
default:10

Number of items per page.

Required range: 1 <= x <= 100
status
enum<string>

Filter by request status.

Available options:
NotSubmitted,
InProgress,
NeedsAdditionalInfo,
Succeeded,
Failed
companyId
string

Filter by company.

Response

200
application/json
Incorporation request list response
data
object[]
message
string
Example:

"Successfully retrieved incorporation requests."