Get organization
GET
/organization/information
Get information about the organization.
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, vouchers, etc.
An organization
will have many people, that may be employees, connections, etc.
GET /organization/information
curl \
-X GET https://gateway.api.tfso.io/v1/organization/information \
-H "Authorization: string"
Response example (200)
# Headers
Access-Control-Allow-Origin: string
Access-Control-Allow-Credentials: string
X-Trace-Id: string
# Payload
{
"id": 42,
"name": "string",
"email": "string",
"invoiceEmail": "string",
"address": {
"street": "string",
"cityName": "string",
"area": "string",
"code": "string",
"countrySubentity": "string",
"country": "string"
},
"state": "Unknown",
"settings": {
"currencySymbol": "string"
},
"contact": {
"name": "string",
"phone": "string",
"email": "string",
"language": "string"
}
}