PayStar API Documentation
  1. Merchant EN
  • Merchant EN
    • Introduction
    • Glossary
    • Authorization key
    • Sandbox
    • Additional fields
    • Currencies
    • Bank names
    • Telecom operators
    • Callbacks
    • Error descriptions
    • Tech FAQ
    • Order History
    • Integratins
      • Stripe
      • Inwizo
      • 2Checkout
      • Adyen
      • AffiniPay
      • Alikassa
      • AlliancePay
      • Amazon Pay
      • AnyMoney
      • AstroPay
      • Aureavia
      • AurisMyChanger
      • Authorize.Net
      • Avatarix
    • Balance H2H
      GET
    • Deposit H2H - Card & P2P
      POST
    • Deposit H2H - Token
      POST
    • Deposit H2C - Card
      POST
    • Deposit status H2H - PayStar ID
      GET
    • Deposit status H2H - Merch ID
      GET
    • Payout H2H
      POST
    • Payout status H2H - PayStar ID
      GET
    • Payout status H2H - Merch ID
      GET
  1. Merchant EN

Payout status H2H - PayStar ID

GET
https://secure.PayStar.uk/api/v1/integration/withdrawal-order/{externalId}/status
Last modified:2025-05-09 06:41:18
INFO
This method is used to check the status of a payout and is applicable if you created the payment using one of the following method:
Payout | H2H
When checking the status, provide the externalId that you received in the response to the payout creation request.
If you receive an error or a non-final status, repeat the status check every 5 minutes until you receive a final status.
Additionally, please refer to the Callbacks section, which allows you to receive the payment status via callbacks.
We recommend using both approaches — callbacks and the status check method — to ensure a more reliable integration.
Payment Statuses
Created – The payment has been successfully created but processing has not yet started.
Processing – The payment is currently being processed.
Success – The payment has been successfully completed.
Failed – The payment was declined.

Check status payout order#

Polling - every 2 min before getting the final status.

CURL Example | GET Status payout order#

curl --request GET \
 --url https://secure.PayStar.uk/api/v1/integration/withdrawal-order/{externalId}/status \
 --header 'Authorization: Bearer YOUR TOKEN' \ 
 --header 'Content-Type: application/json' \

Request

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

Request 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 'https://secure.PayStar.uk/api/v1/integration/withdrawal-order/11b57a18-184a-4c76-a5f1-b581a4fc1edf/status'

Responses

🟢200Success
application/json
Body

Example
{
    "externalId": "PSP-bf95219b-393d-4323-91bf-639ac",
    "orderStatus": "Success",
    "orderHistory": [
        {
            "time": "2025-07-28T09:29:51.339832",
            "action": "1.1.0.0"
        },
        {
            "time": "2025-07-28T09:29:51.339832",
            "action": "4.1.0.0"
        }
    ]
}
🟠401Unauthorized
🟠403Forbidden
🟠404Order Not Found
🔴500Internal Server Error: Errors 499+ occur in unforeseen circumstances. They are transient and not indicative of the order status. If you receive a 499+ error when creating a payment, we recommend checking the payment status using the following method: **/a
Modified at 2025-05-09 06:41:18
Previous
Payout H2H
Next
Payout status H2H - Merch ID
Built with