List organisations
Use this endpoint to retrieve the list of organizations configured in Seamless. This is typically used to identify the organisation's identifier or ID required when creating new groups using the API.
Request
GET /organisations
Response
HTTP/1.1 200 OK
Content-type: application/json
{
"organisations": [
{
"id": "07a9ce7c-ba4a-4cbe-8a08-1a3fee402d0b",
"name": "Contoso",
"identifier": "cn",
"groups": [
"c5df517b-90c9-4952-a3e5-dba4e853fbf2"
]
},
{
"id": "d5472022-8fb2-414f-98dc-a66c67c78263",
"name": "Fabrikam",
"identifier": "fb",
"groups": []
}
]
}