curl --request GET \ --url 'https://transaction-tax.api.in.commenda.io/api/v1/corporations?limit=20' \ --header 'Authorization: Bearer <token>'
{ "message": "Successfully fetched corporations.", "data": { "corporations": [ { "id": "corp_123abc", "legal_name": "Acme Corporation Inc.", "created_at": 1704067200, "jurisdiction": "US", "email_alias": "acme@filings.commenda.io" }, { "id": "corp_456def", "legal_name": "Example LLC", "created_at": 1704153600, "jurisdiction": "US" } ], "total_corporations": 2 } }
Get all corporations in an organization
Show Corporation object
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Cursor for pagination
Number of items to return per page
1 <= x <= 100
Get all corporations response.
Show child attributes
"Successfully fetched corporations."