Paytabs provides you with a collection of API endpoints which used to process all payments, regardless of if they are through either your own payment pages, the managed payment pages, or if you are using the hosted payment pages.
To capture a transaction means that the previously authorized amount from a previous auth transaction will be captured/transferred from the cardholder's bank account to your bank account. In this article, we walk you through how to use and manage the mentioned endpoint.
To process a capture request, tran_type MUST be “capture”, and the transaction reference of the original Authorized transaction that you want to capture should be passed in the tran_ref parameter.
Through out the article we will use the transaction types clarified in our What is "tran_type"? solution article. .
In this article, you will be going to know about:
The Endpoint and Related Postman Collection
In this tutorial, we will rely on the PayTabs Capture API Endpoint, mentioned on the PayTabs API endpoints postman collection, which you can access from here. The endpoint will need to be accessed with a POST request on the below-mentioned URL
Post | {{domain}}/payment/request |
Please note that not using the proper endpoint URI {{domain}} will lead to authentication issues within your responses. To find the your proper domain you can read our What Is My (Region)/(endpoint URL)? solution article.
The Minimum Required Parameters
To initiate a capture payment request, there are minimum required parameters that need to be passed with valid information. The specification of these required parameters is clarified below:
Parameter | Sample Response | Nullable | Purpose |
TST2234701408580 | ✔ | Indicates the Transaction Reference on the Paytabs side |
Sample Request Payload
The below sample request payload will show you how you can pass the above-mentioned parameters, which are needed to be passed with valid values to perform a request.
Capture request is ONLY available for successfully Authorized (A) transactions.
Note that the "tran_type" MUST be "capture".
Sample Response Payload
⌂ To get familiar with the whole process and the other steps, kindly navigate to our "The PT2 API Endpoints Integration Manual" solution article.
⇦ And to get familiar with the rest of the steps regarding the current step "Step 7 - Manage Transactions" kindly click here.
⇦ And to navigate to the previous step in the integration process "Step 6 - Handle the post payment responses" kindly click here.