https://{tenant}.api.identitynow.com/beta/accounts/{id} gets the details of an account on a specific source. We are working on an API to retrieve identity details, but it is not yet available. If you are trying to get information about an identity, then you will need to search identity data in the UI or the API.
For example, to search for an identity by name in the UI:
The same search via the v3 search API would be:
POST https://{tenant}.api.identitynow.com/v3/search
Body
{
"indices": [
"identities"
],
"query": {
"query": "colin.mckibben",
"fields": [
"name"
]
}
}
In the response, the first id
you see is the identity ID, which can’t be used to in the accounts API. If you want to get the details of a specific account this identity belongs to, you will need to use the id
in the accounts
list with the accounts API