Secure Session

secure_session_stepup_revoke

Removes a mark that current session is stepped up.

SecurityAuth_Token and API_Secret_Key
Request
header Parameters
call-ref
string

A call reference generated by the caller and unique to the caller to provide correlation between the caller and system with a maximum length of 255

Responses
204

Success - No Content

400

Invalid Request

default

Error

post/secure_session/stepup/revoke
Response samples
application/json
{
  • "message": "string",
  • "validation": {
    }
}

secure_session_anon_tokenize

Given a map (key, detokenized), tokenizes and returns map<key, tokenized> (only temporary tokenization is allowed, tokens are created without owner)

SecurityAPI_Secret_Key
Request
header Parameters
call-ref
string

A call reference generated by the caller and unique to the caller to provide correlation between the caller and system with a maximum length of 255

Request Body schema: application/json
required
required
object non-empty
Responses
200

Success

400

Invalid Request

default

Error

post/secure_session/anon_tokenize
Request samples
application/json
{
  • "values": {
    }
}
Response samples
application/json
{
  • "tokens": {
    }
}

secure_session_detokenize

Given a token, returns detokenized data (if token is valid and secure session is authenticated with the owner of the token, otherwise 404 is returned)

SecurityAuth_Token and API_Secret_Key
Request
header Parameters
call-ref
string

A call reference generated by the caller and unique to the caller to provide correlation between the caller and system with a maximum length of 255

Request Body schema: application/json
required
token
required
string
field
required
string
Enum: "PASSWORD" "PASSWORD_NUMERIC" "CARD_NUMBER" "CVV" "PIN"
Responses
200

Success

400

Invalid Request

default

Error

post/secure_session/detokenize
Request samples
application/json
{
  • "token": "string",
  • "field": "PASSWORD"
}
Response samples
application/json
{
  • "value": "string"
}

secure_session_tokenize

Given a map (key, detokenized), tokenizes and returns map<key, tokenized> (tokens are created with owner)

SecurityAuth_Token and API_Secret_Key
Request
header Parameters
call-ref
string

A call reference generated by the caller and unique to the caller to provide correlation between the caller and system with a maximum length of 255

Request Body schema: application/json
required
required
object non-empty
Responses
200

Success

400

Invalid Request

default

Error

post/secure_session/tokenize
Request samples
application/json
{
  • "values": {
    }
}
Response samples
application/json
{
  • "tokens": {
    }
}