Read a person

GET /organization/people/{id}

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

Headers

Path parameters

  • id integer(int32) Required

    A unique identifier for the person within 24SevenOffice.

Query parameters

  • Type of person to filter by.

    Values are Organization, External, Basic, or Client.

Responses

GET /organization/people/{id}
curl \
 -X GET https://rest.api.24sevenoffice.com/v1/organization/people/{id} \
 -H "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"
  }
]