Removes a mark that current session is stepped up.
Success - No Content
Invalid Request
Error
{- "message": "string",
- "validation": {
- "invalid": true,
- "fields": [
- {
- "name": "string",
- "errors": [
- {
- "type": "REQUIRED",
- "params": [
- "string"
]
}
]
}
]
}
}
Given a map (key, detokenized), tokenizes and returns map<key, tokenized> (only temporary tokenization is allowed, tokens are created without owner)
Success
Invalid Request
Error
{- "values": {
- "property1": {
- "value": "string",
- "field": "PASSWORD"
}, - "property2": {
- "value": "string",
- "field": "PASSWORD"
}
}
}
{- "tokens": {
- "property1": "string",
- "property2": "string"
}
}
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)
Success
Invalid Request
Error
{- "token": "string",
- "field": "PASSWORD"
}
{- "value": "string"
}
Given a map (key, detokenized), tokenizes and returns map<key, tokenized> (tokens are created with owner)
Success
Invalid Request
Error
{- "values": {
- "property1": {
- "value": "string",
- "field": "PASSWORD"
}, - "property2": {
- "value": "string",
- "field": "PASSWORD"
}
}
}
{- "tokens": {
- "property1": "string",
- "property2": "string"
}
}