Get organisation
Retrieves a specific Seamless organization along with its template. This is typically used to obtain the template ID required when creating new groups using the API.
Request
GET /organisations/{idOrIdentifier}
Response
HTTP/1.1 200 OK
Content-type: application/json
{
"id": "07a9ce7c-ba4a-4cbe-8a08-1a3fee402d0b",
"name": "Contoso",
"identifier": "cn",
"groups": [
"c5df517b-90c9-4952-a3e5-dba4e853fbf2"
],
"templates": [
{
"id": "3774f65e-691c-4895-8748-481dd0076b01",
"name": "Internal project",
"identifier": "intprj",
"mailNicknamePattern": "{{projectCode}}",
"displayNamePattern": ""
},
{
"id": "32b06def-e61d-45d5-8151-fc866816e87f",
"name": "Customer project",
"identifier": "cstprj",
"mailNicknamePattern": "{{projectCode}}",
"displayNamePattern": ""
}
]
}