Resources
Company Info | FieldCamp API
Retrieve your tenant's organization-level settings.
Returns your tenant's top-level settings — company name, contact details, default timezone and currency. Useful as a first authenticated call when verifying your setup.
curl https://api.fieldcamp.ai/api/company-info \
-H "X-API-Key: $FIELDCAMP_API_KEY" \
-H "Authorization: Bearer $FIELDCAMP_API_KEY"Endpoints
GET
/api/company-infoAuthorizationBearer <token>
Pass your JWT API key as Authorization: Bearer <token>. Send
alongside X-API-Key: <token> for maximum compatibility.
In: header
Response Body
application/json
application/json
curl -X GET "https://example.com/api/company-info"{ "success": true, "data": { "company": { "id": "string", "companyName": "string", "email": "user@example.com", "phoneNumber": { "countryCode": "+44", "number": "7555123456", "countryIdentifier": "gb" }, "address": { "street": "221B Baker Street", "houseNumber": "", "city": "London", "state": "England", "country": "United Kingdom", "zipCode": "NW1 6XE", "formattedAddress": "221B Baker Street, London, England, NW1 6XE, United Kingdom", "latitude": 51.5237, "longitude": -0.1585, "plusCode": "" }, "timezone": "string", "currency": "GBP" } }}{ "success": false, "error": "Invalid or expired token"}