Cancel

Cancel a cash payment order through the LP's api

Cancel a cash payin order

PATCH https://api.stage.localpayment.com/api/transactions/:externalId/status

Cancel a cash payin order

Path Parameters

NameTypeDescription

externalId*

string

Mandatory. The same externalId you specified when the order was posted. The ID has to be unique and meaningful to you.

Headers

NameTypeDescription

Authorization*

string

Mandatory. JWT token in format Bearer eyJ0... . For more information about authentication, please refer to Authentication

Request Body

NameTypeDescription

status*

string

Mandatory. Type "CANCELLED" to cancel a cash payin.

{
    "externalId": "1623539480",
    "internalId": "764355d7-9935-4716-8e26-0f507ba2e6f8",
    "status": {
        "code": "900",
        "description": "CANCELLED",
        "detail": "The payin was cancelled"
    }
}

Example: Cancel a cash payment order

{
    "status": "CANCELLED"
}

Last updated