The Adapt REST API provides access to:
The full documentation for the REST API and all the available methods can be found here.
POST /domains/{domain_name}/logon
In order to use any of the REST interfaces an SID must first be obtained by POSTing a logon request to the logon endpoint for the domain you want to connect to. The ID returned can then be passed in the x-adapt-sid request header to all other methods to identify the REST API session.
POST https://adaptserver:port/WebApp/api/domains/MyDomain/logon
Content-Type: application/json
{
"username":"myuser",
"password":"mypassword",
"profile":"CoreProfile",
"locale":"EN_GB",
"timezone":"GMT",
"dateFormat":3,
"timeFormat":3
}
HTTP/1.1 200 OK
{
"SID":"156295783456348"
}