Read a person

GET /organization/people/{id}

Read information about a single person identified by its unique ID.

Headers

  • Authorization string Required

    Authorization header

Path parameters

  • id integer(int32) Required

    A unique identifier for the person within 24SevenOffice.

Query parameters

  • personType string

    Type of person to filter by.

    Values are Organization, External, Basic, or Client.

Responses

  • Success

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string
    • Access-Control-Allow-Credentials string
    • X-Trace-Id string
    Hide response attributes Show response attributes object
    • id integer(int32)

      The unique identifier for the person within 24SevenOffice.

    • identityId string(uuid) | null

      The identifier for the connected identity.

    • firstName string | null

      The first name of the person.

    • lastName string | null

      The last name of the person.

    • personType string

      Values are Organization, External, Basic, or Client.

    • hasLicense boolean

      A flag variable indicating whether the person has a license.

    Hide response attributes Show response attributes object
    • id integer(int32)

      The unique identifier for the person within 24SevenOffice.

    • identityId string(uuid) | null

      The identifier for the connected identity.

    • firstName string | null

      The first name of the person.

    • lastName string | null

      The last name of the person.

    • personType string

      Values are Organization, External, Basic, or Client.

    • hasLicense boolean

      A flag variable indicating whether the person has a license.

    Hide response attributes Show response attributes object
    • id integer(int32)

      The unique identifier for the person within 24SevenOffice.

    • identityId string(uuid) | null

      The identifier for the connected identity.

    • firstName string | null

      The first name of the person.

    • lastName string | null

      The last name of the person.

    • personType string

      Values are Organization, External, Basic, or Client.

    • hasLicense boolean

      A flag variable indicating whether the person has a license.

  • 404

    Not Found

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string
    • Access-Control-Allow-Credentials string
    • X-Trace-Id string
GET /organization/people/{id}
curl \
 --request GET 'https://rest.api.24sevenoffice.com/v1/organization/people/{id}' \
 --header "Authorization: string"
Response examples (200)
[{"id"=>123, "lastName"=>"Doe", "firstName"=>"John", "hasLicense"=>true, "identityId"=>"123e4567-e89b-12d3-a456-426614174001", "personType"=>"Organization"}]
Response examples (200)
[
  {
    "id": 123,
    "lastName": "Doe",
    "firstName": "John",
    "hasLicense": true,
    "identityId": "123e4567-e89b-12d3-a456-426614174001",
    "personType": "Organization"
  }
]
Response examples (200)
[
  {
    "id": 123,
    "lastName": "Doe",
    "firstName": "John",
    "hasLicense": true,
    "identityId": "123e4567-e89b-12d3-a456-426614174001",
    "personType": "Organization"
  }
]