Read an organization by license ID

GET /me/licenses/{id}/organization

Read a summary of the organization connected to a license identified by its unique license ID. This summary provides more information than just the organization name, and is useful for looking up details about all connected licenses without authorization from other organizations with login hints.

Headers

  • Authorization string Required

    Authorization header

Path parameters

  • id string(uuid) Required

    The unique identifier for the license.

Responses

  • 200 application/json

    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 string(uuid)

      The unique identifier for the organization.

    • name string

      The name of the organization.

    • email string

      The email address of the organization.

GET /me/licenses/{id}/organization
curl \
 --request GET 'https://rest.api.24sevenoffice.com/v1/me/licenses/{id}/organization' \
 --header "Authorization: string"
Response examples (200)
{
  "id": "123e4567-e89b-12d3-a456-426614174004",
  "name": "ABC Corporation",
  "email": "contact@example.com"
}