Greetings,
Just getting going with the ISC APIS, and running into an issue listing all of the Identities in our dev Tenant:
Given the following request ( Derived from Postman Request )
curl --location ‘https://[TENANT PORTION].api.identitynow-demo.com/v2025/identities?limit=250&offset=0’ \
--header ‘Accept: application/json’ \
--header ‘Authorization: ••••••’
Receiving the following response:
`"detailCode": "403 Forbidden",`
"trackingId": "0a3fe85b98ce4bff8eeb73397d502fb9",
"messages": [
{
"locale": "en-US",
"localeOrigin": "DEFAULT",
"text": "The server understood the request but refuses to authorize it."
},
{
"locale": "und",
"localeOrigin": "REQUEST",
"text": "The server understood the request but refuses to authorize it."
}
],
"causes": []
In terms of our general setup, I am have an API Client with the following scopes defined:
idn:identity:read,sp:scopes:all,idn:identity:manage
We are able to pull retrieve Accounts, using the Accounts List endpoint, as well as getting detailed information, using the Account Details endpoint.
Looking for a little guidance on the proper request, or anything that we may be missing here.