Singapay Home Page
Logo Icon
  1. Payment Link
  2. Delete

Information

MethodPathFormatAuthentication
DELETEapi/v1.0/payment-link-manage/{account_id}/{payment_link_id}jsonOAuth 2.0 with Access Token

Request Details

Headers Structure

FieldValueTypeMandatoryLengthDescriptionExample
X-PARTNER-IDapi_keyAlphanumericMandatoryAPI key obtained from the merchant dashboard.b3ed7d4b-a96c-6c08-b3c7-12c3124242d9
Acceptapplication/jsonAlphabeticMandatorySpecifies JSON as the expected response format.application/json
AuthorizationBearer {bearerToken}AlphanumericMandatoryBearer token obtained from the get access token endpoint.Bearer eyJ0eXAiOiJKV1{…}

Response Details

Response Structure

FieldTypeMandatoryLengthDescriptionExample
statusNumericMandatory3HTTP Status Code.200
successBooleanMandatory1Indicates successful request.true
dataObjectMandatory-The main object containing the response message.-
> messageStringMandatory-A successful message string indicating the result of the deletion operation.Payment Link deleted successfully

Response Example

Success: Here’s an example of a successful response.

{
    "status": 200,
    "success": true,
    "data": {
        "message": "Payment Link deleted successfully"
    }
}