API Docs
Back to Organization & People Management

Get Organization

Retrieves public details of an organization

Request Details

path Parameters

FieldTypeRequiredDescription
id
string
YesThe unique identifier of the organization

Sample Request & Response

GET
/v1/organizations/me
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",
  "approved": 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"
      ]
    }
  },
  "admin": {
    "firstName": "example_string",
    "lastName": "example_string",
    "email": "example_string",
    "phone": "example_string",
    "settings": {
      "profilePictureUrl": "example_string"
    }
  }
}