Subscription Authentication

This endpoint is used to authenticate an entity that is redirect to your website with a ianum Token in the URL as query parameters.

Verify Ianum Token

POST https://auth.{region}.ianum.com/v1_3/subscription

Get the information about who this user is, burning the ianum Token collected in the user's redirect URL

Headers

NameTypeDescription

Authorization

string

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

Request Body

NameTypeDescription

ianumToken

string

The token collected from the user redirect. The query parameter in the user's redirect url is ianumToken

{
    "verified": true,  //if the authentication was success
    "idActor": "acr_XXXXXXX",  //the idActor fo the user
    "idSubscription": "sub_XXXXXXXX",  //the idSubscription of this login
    "internalId": "123456" // this parameter is set in case of PRIVATE gates
}

Last updated