Confirmation of funds debit

POST https://agwsapi.tarlanpayments.kz/showcase-gateway/api/v1/action/confirm/invoice

<Description of the endpoint>

Headers

NameValue

Content-Type

application/json

Authorization

Body

NameTypeDescription

agent*

String

Showcase code in the Tarlanpayments system

confirm_code

String

Payment confirmation code

external_id*

String

Payment ID on the showcase side

Response

NameTypeDescription

result

Object

An object storing payment information

-is_success

String

Payment success flag

-transaction_status_id

String

external_id

String

Payment ID on the showcase side

{ 
    "result": { 
        "is_success": true, 
        "transaction_status_id": "2", 
        "transaction_id": "externa312" 
    } 
}
curl --location 'https://agwsapi.tarlanpayments.kz/showcase-gateway/api/v1/action/confirm/invoice' \ 
--header 'Content-Type: application/json' \ 
--data '{ 
    "agent": "test_agent",
    "confirm_code": "104000", 
    "external_id": "externa312" 
}'

Last updated