Subscription Accesses

Get Accesses

GET https://auth.{region}.ianum.com/v1_3/subscription/{idSubscription}/accesses

Get the accesses made to your gate. All the query string are optional, and can be used to customize more the searches.

Path Parameters

NameTypeDescription

idSubscription

string

Id subscription for which you want to get the accesses.

Query Parameters

NameTypeDescription

startToken

string

If you have already made a research, the token given in the previous one to query the next values. [DEFAUTL = ""]

idSubscription

string

id of the Subscription we want to filter the accesses [DEFAULT = ""]

idActor

string

id of the Actor we want to filter accesses [DEFAULT = ""]

dateStart

number

UNIX timestamp of when we want to start the search [DEFAULT = 0]

dateEnd

number

UNIX timestamp of when we want to end the search [DEFAULT = current timestamp]

limit

number

how many results [DEFAULT = 50]

order

string

how to return data. asc to get from oldest to newest or desc to get from newest to oldest [DEFAULT = desc]

Headers

NameTypeDescription

Authorization

string

Should be "Bearer XXXXX" where XXXXX is the token received from /oauth/token endpoint

{
    "accessList": {[
        //the id of the subscription
        "idSubscription": "sub_xxx",
        //the id of the actor
        "idActor": "act_xxx",
        //when the access took place
        "date": 1550231361
    ], [ ... ]},
    "startToken": "KjuWE...SDuer"
}

Last updated