Skip to main content
GET
/
organisations
/
{organisationId}
Get organisation by ID
curl --request GET \
  --url https://{subdomain}.nudj.cx/api/v2/admin/organisations/{organisationId} \
  --header 'x-api-token: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "language": "<string>",
  "timezone": "<string>",
  "location": "DE",
  "createdBy": "<string>",
  "updatedBy": "<string>"
}

Authorizations

x-api-token
string
header
required

Path Parameters

organisationId
string
required

Response

Successful response

id
string
required

The id of the organisation

name
string
required

The name of the organisation

language
string
required

The language of the organisation e.g. en, de, fr, etc.

timezone
string
required

The timezone of the organisation (IANA format)

location
enum<string>
required

The location of data for the organisation

Available options:
DE,
US
createdBy
string
required

The user who created this organisation

updatedBy
string
required

The user who last updated this organisation

I