Issuer token
The issuer token object
Use this route to get the issuer token after creating a charge using a transaction token with the payment type online
. The charge status needs to be awaiting
before issuer_token
is populated.
Fields | |
issuer_token | string The token provided by the payment provider for execution by the client. |
call_method | string The execution method by the client. Is one of http_get , http_post , sdk , web , app . – sdk refers to usage directly in a SDK provided by the payment provider.– web refers to usage directly in a special browser environment with specific API extensions.– app refers to usage in a native app environment in a SDK provided by the payment provider.– http_get or http_post , the issuer_token can be directly executed in a new browser window or in an iframe with the correct corresponding HTTP method. |
Request
GET https://api.prod.univapaycast.com/stores/{storeId}/charges/{id}/issuerToken
Headers:
Content-Type: application/json
Authorization: Bearer {jwt}
Response
Code: 200
Headers:
Content-Type: application/json
Body:
{
"issuer_token": "test",
"call_method": "http_get"
}