cURL
curl --request GET \ --url https://base_url/api/v1/corporations/{id} \ --header 'Authorization: Bearer <token>'
{ "data": { "id": "b6d009b0-d174-463f-b030-94643c28e209", "legal_name": "Acme Corporation" }, "message": "Successfully fetched corporation." }
Get a corporation by id.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The unique identifier of the corporation to fetch.
Get one corporation response.
The response is of type object.
object