Read organization
Read information about the organization that the current profile is logged into.
24SevenOffice is a multi-tenant application, where a personal login gives access to more than one organization and its people.
Hence, there exist "identity", "organization" and the organization’s "people".
Identity → *Organization → *Person
Organization
An organization is usually a legal entity based in a certain country. An organization will own all of its data such as customers, invoices, transactions, etc.
An organization will have many people that may be employees, connections, etc.
        GET
    /organization/information
  
  curl \
 --request GET 'https://rest.api.24sevenoffice.com/v1/organization/information' \
 --header "Authorization: string"
        Response examples (200)
  
  {
  "id": 12345,
  "name": "ABC Corporation",
  "email": "contact@example.com",
  "status": "Active",
  "address": {
    "city": "Baerum",
    "street": "Hovedgata 1",
    "postalArea": "Fornebu",
    "postalCode": "0123",
    "countryCode": "NO",
    "countrySubdivision": "Viken"
  },
  "contact": {
    "name": "John Doe",
    "email": "john.doe@example.com",
    "phone": "+47-87654321",
    "language": "en"
  },
  "settings": {
    "currencyCode": "NOK"
  },
  "invoiceEmail": "invoices@example.com"
}