Get company representative information

Retrieve information on whether your account belongs to a company and which representatives are linked to it. Use this endpoint to verify company details or get contact information for a company representative. The response includes a `requestId` for follow-up calls.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/company-representatives
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/company-representatives" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "isCompany": true,
    "representatives": [
      "string"
    ]
  }
}