LogoLogo
Document ValidationsPayment Methods
v1
v1
  • D24 Documentation v1
  • Deposits API
    • Streamline API
      • Deposit Creation Endpoint
        • Notifications
      • Deposit Status Endpoint
      • Payment Methods Endpoint
      • Currency Exchange Endpoint
      • Refund Creation Endpoint
      • Refund Status Endpoint
    • Hybrid API
      • Deposit Creation Endpoint
    • Payment Methods
    • API Codes
  • Cashouts API
    • Easy Cashout API
      • Endpoints
        • Easy Cashout Creation Endpoint
        • Easy Cashout Status Endpoint
        • Easy Cashout V2 Creation Endpoint
      • Notifications
      • Easy Cashout V2 Technical and Security Aspects
        • Calculating the Payload-Signature
Powered by GitBook
On this page

Was this helpful?

  1. Cashouts API
  2. Easy Cashout API

Notifications

Easy Cashouts notifications logic

Notifications

As soon as the customer completes all of the details in the Easy Cashout page and confirms the request, the cashout request will be created in our Backoffice with Pending status.

Once we send the cashout request to the bank for processing, we will change its status to Delivered and so a notification will be sent to the notification_url specified on the request or to Withdrawal URL you should have configured on the Merchant Panel by going to Settings -> API Access -> Withdrawal URL.

When the bank tell us that the cashout was either successful or rejected, we will change its status to Completed or Rejected respectively, sending a notification to the URL mentioned above.

The notifications will be sent in JSON format and will contain the values shown in the examples below.

{
  "cashout_id": 60339,
  "cashout_status": 1,
  "cashout_status_description": "Completed",
  "external_id": "test90910"
}

{
  "cashout_id": 60340,
  "cashout_status": 3,
  "cashout_status_description": "Rejected",
  "external_id": "test5809",
  "rejection_code": 0,
  "rejection_reason": ""
}
PreviousEasy Cashout V2 Creation EndpointNextEasy Cashout V2 Technical and Security Aspects

Last updated 3 years ago

Was this helpful?

to see all the possible cashout_status codes.

Click here