GET 1.0/Security/AuthenticateClientCredentialsToken?aCloudOrganisationId={aCloudOrganisationId}
Authenticates the given client credentials token for an organisation, returning a list of related Instance objects if successful
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| aCloudOrganisationId |
When using an identity client credentials token, you need to provide an organisation id to limit the results |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
AuthenticateResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Instances |
A list of Instance objects relevant to a login |
Collection of Instance |
None. |
Response Formats
application/json, text/json
Sample:
{
"Instances": [
{
"Id": "sample string 1",
"Url": "sample string 2",
"Name": "sample string 3",
"Ticket": "sample string 4",
"SharedSecret": "sample string 5"
},
{
"Id": "sample string 1",
"Url": "sample string 2",
"Name": "sample string 3",
"Ticket": "sample string 4",
"SharedSecret": "sample string 5"
}
]
}