InstantTransfer
  1. Deposit direct (Merch)
InstantTransfer
  • PayStar API Documentation
    • Introduction
    • Authorization Bearer
    • Sandbox
    • Callbacks
    • Glossary
    • Dictionarys
      • Currencys
      • Telecom operators
      • Bank names
    • Deposit direct (Merch)
      • Create | Deposit order
        POST
      • Check status | Deposit order
        GET
    • 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
      • Create | Withdrawal Order
    • 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. Deposit direct (Merch)

Check status | Deposit order

GET
/api/v1/integration/deposit-order/{externalId}/status

CURL Example | GET Status deposit order#

curl --request GET \
 --url https://example.com/api/v1/integration/deposit-order/{externalId}/status \
 --header 'Authorization: Bearer YOUR TOKEN' \
 --header 'Content-Type: application/json' \
 
INFO
POST Deposit - endpoint for creating payIn order.
When checking the status, specify the externalId you received in response to the create a deposit order 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/deposit-order/PSP-bf95219b-393d-4323-91bf-639ac/status' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Сurrent order status
application/json
Body

Example
{
    "externalId": "PSP-bf95219b-393d-4323-91bf-639ac",
    "orderStatus": "Created"
}
🟠401Unauthorized: Check the correctness of the authorization token or contact the manager for consultation.
🟠403Forbidden: Your authorization is disabled or not properly configured - please contact the manager for consultation.
🟠404Order not found
Modified at 2024-12-12 13:18:26
Previous
Create | Deposit order
Next
Deposit reverse (Gateway)
Built with