API Guide

Table Of Contents
]
}
/api/IdentityPoolService/IdentityStates
This URI represents the identity states for the identities in an identity pool.
GET method for IdentityStates
This method returns the identity states, such as Reserved and Assigned, for the identities in an identity pool.
Description Returns identity states.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "/api/
$metadata#Collection(IdentityPoolService.IdentityState)",
"@odata.count": 2,
"value":
[
{
"@odata.type": "#IdentityPoolService.IdentityState",
"@odata.id": "/api/IdentityPoolService/IdentityStates(1)",
"Id": 1,
"Name": "Reserved",
"Description": "Assigned to a profile; deployment pending."
},
{
"@odata.type": "#IdentityPoolService.IdentityState",
"@odata.id": "/api/IdentityPoolService/IdentityStates(2)",
"Id": 2,
"Name": "Assigned",
"Description": "Assigned to a profile and provisioned on device."
}
]
}
/api/IdentityPoolService/IdentityStates(Id)
This URI represents a specific identity state.
GET method for IdentityStates(Id)
This method returns the details of a specific identity state.
Description
Returns a specific identity state.
Privilege VIEW
HTTP response
codes
200
Example
response body
{
"@odata.context": "/api/$metadata#IdentityPoolService.IdentityState/
$entity",
Configure 223