Payment Session Timeout
The API allows you manage the session timeout of the transaction
Last updated
The API allows you manage the session timeout of the transaction
GET https://api.lahza.io/payment_session_timeout
Fetch the payment session timeout
authorization*
String
Set value to Bearer SECRET_KEY
{
"status": true,
"message": "Payment session timeout retrieved",
"data": {
"payment_session_timeout": 30
}
}PUT https://api.lahza.io/payment_session_timeout
Update the payment session timeout
authorization*
String
Set value to Bearer SECRET_KEY
content-type*
String
Set value to application/json
timeout*
Integer
Time before stopping session (in seconds). Set to 0 to cancel session timeouts
Last updated
{
"status": true,
"message": "Payment session timeout updated",
"data": {
"payment_session_timeout": 30
}
}