cURL
curl --request GET \ --url https://api.example.com/external/v1/company/
Retrieve company information and configuration
GET /external/v1/company/
curl -X GET "https://your-instance.firstwork.com/external/v1/company/" \ -H "Authorization: Bearer YOUR_API_KEY"
{ "status": "success", "data": { "id": "company-uuid", "name": "Acme Corporation", "timezone": "America/Los_Angeles", "locale": "en-US", "legal_entities": [ { "id": "entity-1-uuid", "name": "Acme Corp - US" }, { "id": "entity-2-uuid", "name": "Acme Corp - UK" } ] } }