Transaction Status Request

The Merchant System can request transaction status without waiting for notification delivering. For this purpose it is required to send GET request with Auth heading to the address:

https://olympz.com/api/status/{ID}, in which {ID} is replaced by a transaction number in Olympz system, for example: https://olympz.com/api/status/300.

The fields in response are equal to transaction status notification request above

The example of response to the request: https://olympz.com/api/status/300:

{
    "id": "500",
    "status": "ok",
    "message": "",
    "type": "deposit",
    "transaction_id": "1234567",
    "original_amount": "10.00",
    "amount": "10.00",
    "currency": "USD",
    "method_name": "CardChannel1",
    "created": 1500000000,
    "updated": 1510000000,
    "system_fields": {
        "card_number": "411111******1111"
    }
}

Last updated