Read organization

GET /organization/information

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.

Headers

Responses

GET /organization/information
curl \
 -X GET https://rest.api.24sevenoffice.com/v1/organization/information \
 -H "Authorization: string"
Response examples (200)
# Headers
Access-Control-Allow-Origin: string
Access-Control-Allow-Credentials: string
X-Trace-Id: string

# Payload
{
  "id": 12345,
  "name": "ABC Corporation",
  "email": "contact@example.com",
  "invoiceEmail": "invoices@example.com",
  "address": {
    "street": "Hovedgata 1",
    "city": "Baerum",
    "postalArea": "Fornebu",
    "postalCode": "0123",
    "countrySubdivision": "Viken",
    "countryCode": "NO"
  },
  "status": "Active",
  "settings": {
    "currencyCode": "NOK"
  },
  "contact": {
    "name": "John Doe",
    "phone": "+47-87654321",
    "email": "john.doe@example.com",
    "language": "en"
  }
}