InstantTransfer
  1. Withdrawal direct | PDO API Bridge
InstantTransfer
  • PayStar API Documentation
    • Introduction
    • Authorization Bearer
    • Sandbox
    • Callbacks
    • Glossary
    • Dictionarys
      • Currencys
      • Telecom operators
      • Bank names
    • Deposit direct (Merch)
      • Create | Deposit order
      • Check status | Deposit order
    • Deposit reverse (Gateway)
      • Create | Reverse deposit order
      • Check status | Deposit order
    • Withdrawal direct (Merch)
      • Create | Withdrawal order
      • Check status | Withdrawal order
    • Balance
      • GET Merchant balance
  • Armax API
    • POST Armax Order
      POST
  • Butler API Bridge
    • Authorization Bearer
    • Withdrawal direct | PDO API Bridge
      • Check status | Withdrawal order
        GET
      • Create | Withdrawal Order
        POST
    • PSP Deposit Order
      • PSP Deposit Order
      • PSP Deposit Order status
    • Merch Deposit Order
      • Merch Deposit Order
      • Merch Deposit Order status
  • CoreFy API
    • Withdrawal Order
      POST
    • Payment Order
      POST
  • PayNetEasy API Bridg
    • Introduсtion
    • Autorization
    • Glossary
    • POST order
      POST
    • POST Status order
      POST
  1. Withdrawal direct | PDO API Bridge

Check status | Withdrawal order

GET
/api/v1/integration/butler/withdrawal-order/{id}

CURL Example | GET Status deposit order#

curl --request GET \
 --url https://example.com/api/v1/integration/butler/withdrawal-order/{id} \
 --header 'Authorization: Bearer YOUR TOKEN' \
 --header 'Content-Type: application/json' \
 
INFO
When checking the status, specify the externalId you received in response to the payment creation request.
If you receive an error or a non-final status, repeat the status request every 5 minutes until you receive one of the final statuses.
INFO
The system has the following set of statuses:
Created - the order has been successfully created and awaits processing
Processing - interim status, the order is being processed
Success - final status, the payment was successfully processed
Failed - final status, the payment was not processed

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/integration/butler/withdrawal-order/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
The order must reach the final status -Success or Faile. Please polling the order status every 2 minutes or ask the manager to set up callbacks
Body

Example
{
    "amount": "1000",
    "status": "Created",
    "externalId": "Merch-1234567890",
    "pspDepositOrderID": "PayStar-9dc24b8a-0c32-4437-9645-8f53cd07e1e8"
}
🟠404Order Not Found
🟠401Unauthorized
Modified at 2024-12-12 13:18:26
Previous
Withdrawal direct | PDO API Bridge
Next
Create | Withdrawal Order
Built with