cURL
curl --request GET \ --url https://base_url/api/v1/corporations \ --header 'Authorization: Bearer <token>'
{ "data": { "corporations": [ { "id": "b6d009b0-d174-463f-b030-94643c28e209", "legal_name": "Acme Corporation" } ], "cursor": "<string>" }, "message": "Successfully fetched corporations." }
Get all corporations associated with a sales tax partner.
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
The unique identifier for a corporation.
"b6d009b0-d174-463f-b030-94643c28e209"
The legal name of the corporation.
"Acme Corporation"
"Successfully fetched corporations."