v1
latestOpenAPI 3.0.12026-07-245303882.5 MBPayment Initiation Management Session
Create payment initiation management session
Creates a secure management session for end users to access payment initiation interfaces. Generates an authenticated URL with opaque token that allows users to manage their payment initiations through a white-label interface. Supports both individual (CPF) and business entity (CNPJ) users with optional redirect URL configuration.
post/open-keys/itp/api/v2/payment-initiation/management-session
Request body
Example request
{
"data": {
"loggedUser": {
"document": {
"identification": "11122233344",
"rel": "CPF"
}
},
"businessEntity": {
"document": {
"identification": "00000000000191",
"rel": "CNPJ"
}
},
"redirectUrl": "https://example.com"
}
}Response
Payment initiation management session URL successfully created and returned.
Example response
{
"url": "https://example.com"
}