Back to Organization & People Management
Get Organization
Retrieves public details of an organization
Request Details
path Parameters
| Field | Type | Required | Description | 
|---|---|---|---|
| id | string  | Yes | The unique identifier of the organization | 
Sample Request & Response
GET
/v1/organizations/{id}Sample Request
Headers:
{
  "Authorization": "Bearer <YOUR_API_KEY>"
}Path Parameters:
{
  "id": "string (required) - The unique identifier of the organization"
}Sample Response (200)
{
  "id": "example_string",
  "name": "example_string",
  "email": "example_string",
  "phone": "example_string",
  "isApproved": true,
  "website": "example_string",
  "createdAt": "2025-07-26T12:00:00Z",
  "updatedAt": "2025-07-26T12:00:00Z",
  "domain": {
    "name": "example_string",
    "verified": true,
    "requestedAt": "2025-07-26T12:00:00Z"
  },
  "locations": [
    {
      "id": "example_string",
      "name": "example_string",
      "about": "example_string",
      "country": "example_string",
      "region": "example_string",
      "city": "example_string"
    }
  ],
  "settings": {
    "logoUrl": "example_string",
    "webhook": {
      "enabled": true,
      "url": "example_string",
      "events": [
        "resume.parsed"
      ]
    }
  }
}