List Environments

Environments include one ore more tenants that share resources and settings while maintaining data and authorization isolation. Refer to Management API for more information.

Make the following request to list all of your available environments:

Request

http
Copy to clipboard.
1POST https://manage.mattr.global/v1/environments

Response

json
Copy to clipboard.
1{
2    "id": "354038cd-ec18-489e-999a-10f354a23",
3    "name": "Private US West Oregon",
4    "domain": "yours.mattr.global",
5    "authorizationServerDomain": "auth.mattr.global",
6    "deploymentModel": "private",
7    "region": {
8        "id": "cd714552-b008-4c2a-a3a6",
9        "name": "nz02",
10        "displayName": "Oregon, West US"
11    }
12},
13{
14    "id": "6aa264d5-f6c0-4839-bbb5-2623",
15    "name": "Private Australia Sydney",
16    "domain": "yours2.mattr.global",
17    "authorizationServerDomain": "auth.mattr.global",
18    "deploymentModel": "private",
19    "region": {
20        "id": "32d02d55-8b77-4900-a2a3-2525",
21        "name": "nz01",
22        "displayName": "Sydney, Australia"
23    }
24}
  • id: Unique environment identifier. This is used when creating new tenants.

  • name: Environment name.

  • domain: Environment MATTR VII domain.

  • authorizationServerDomain: Environment authorization server.

  • deploymentModel: Indicates a private or public deployment.

  • region: Indicates region details (id, name, displayName).