Capture transaction
User can capture a delay capture transaction earlier then the set day. Authenticate this request using HTTP Basic Auth by adding a bearer token to the header, e.g. Authentication: Bearer {{access_token}}. You can get the {{access_token}} from the create token request.
The previous transaction must have delay_capture_days set to be greater than 0 in the intent.
Path Parameters
- transaction_id string required
The transaction ID
- application/json
Request Body
- amount number required
Transaction amount.
- transaction_unique string required
Transaction unique.
Responses
- 200
Response Headers
- application/json
- Schema
- Example (from schema)
- Example
Schema
- success boolean
- message string
- amount string
- reference string
- transaction_id string
{
"success": true,
"message": "string",
"amount": "string",
"reference": "string",
"transaction_id": "string"
}
Transaction details - CC
{
"success": true,
"message": "Captured successfully",
"amount": "1.01",
"reference": "rif7ng8",
"transaction_id": "BL-2349AGB"
}
Loading...