Confirmation of funds debit

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

Headers

NameValue

Content-Type

application/json

X-Signature

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

status

bool

Request processing status

status_code

uint

Error code

message

string

Description of error

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

{
    "status": true,
    "status_code": 0,
    "message": "Success",
    "result": {
        "is_success": true,
        "transaction_status_id": "1",
        "external_id": "200001",
        "message": ""
    }
}
curl --location 'https://agwsapi.tarlanpayments.kz/showcase-gateway/api/v1/action/confirm/invoice' \
--header 'Content-Type: application/json' \
--header 'X-Signature: your_signature_here' \
--data '{
    "agent": "test_agent",
    "confirm_code": "104000",
    "external_id": "externa312"
}'

Last updated