Logo
IdentityNow API Documentation

Access Request Status

GET {{baseUrl}}/access-request-status

Use this API to return a list of access request statuses based on the specified query parameters. If an access request was made for access that an identity already has, the API ignores the access request. These ignored requests do not display in the list of access request statuses. Any token with any authority can request their own status. A token with ORG_ADMIN authority is required to call this API to get a list of statuses for other users.

 

Body PARAM

Key Datatype Required Description 
requested-for
string Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
requested-by
string Filter the results by the identity twho made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
regarding-identity
string Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
assigned-to
string Filter the results by the specified identity who is the owner of the Identity Request Work Item. *me* indicates the current user.
count
boolean If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
limit
number Max number of results to return.
offset
number Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
Curl
curl -X GET 'https://tenant.api.identitynow.com/v3/access-request-status?requested-for=2c9180877b2b6ea4017b2c545f971429&requested-by=2c9180877b2b6ea4017b2c545f971429&regarding-identity=2c9180877b2b6ea4017b2c545f971429&assigned-to=2c9180877b2b6ea4017b2c545f971429&count=false&limit=100&offset=10&filters=accountActivityItemId eq "2c918086771c86df0177401efcdf54c0"&sorters=created' -H 'Accept: application/json'

ENDPOINTS