
Payment Link
This feature is used to delete a payment link.
| Method | Path | Format | Authentication |
|---|---|---|---|
| DELETE | api/v1.0/payment-link-manage/{account_id}/{payment_link_id} | json | OAuth 2.0 with Access Token |
| Field | Value | Type | Mandatory | Length | Description | Example |
|---|---|---|---|---|---|---|
| X-PARTNER-ID | api_key | Alphanumeric | Mandatory | API key obtained from the merchant dashboard. | b3ed7d4b-a96c-6c08-b3c7-12c3124242d9 | |
| Accept | application/json | Alphabetic | Mandatory | Specifies JSON as the expected response format. | application/json | |
| Authorization | Bearer {bearerToken} | Alphanumeric | Mandatory | Bearer token obtained from the get access token endpoint. | Bearer eyJ0eXAiOiJKV1{…} |
| Field | Type | Mandatory | Length | Description | Example |
|---|---|---|---|---|---|
| status | Numeric | Mandatory | 3 | HTTP Status Code. | 200 |
| success | Boolean | Mandatory | 1 | Indicates successful request. | true |
| data | Object | Mandatory | - | The main object containing the response message. | - |
| > message | String | Mandatory | - | A successful message string indicating the result of the deletion operation. | Payment Link deleted successfully |
Success: Here’s an example of a successful response.
{
"status": 200,
"success": true,
"data": {
"message": "Payment Link deleted successfully"
}
}