Delete a payment method.

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://developer.pace.cloud/doc/payment/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Payment MCP server": {
  "url": "https://developer.pace.cloud/doc/payment/mcp"
}
Close
DELETE /2026-1/payment-methods/{paymentMethodId}

Delete a specific payment method. This will remove the payment method from the system making it unavailable for further transactions.

Path parameters

  • paymentMethodId string(uuid) Required

    The unique identifier of the payment method to delete.

Responses

  • 204

    The payment method was successfully deleted.

  • 401

    Client authentication failed.

  • 403

    Missing one or more required scopes.

  • 500

    An internal server error occurred.

DELETE /2026-1/payment-methods/{paymentMethodId}
curl \
 --request DELETE 'https://api.pace.cloud/payment/2026-1/payment-methods/e7b23b4b-3957-499f-98e9-7205b581d8ac' \
 --header "Authorization: Bearer $ACCESS_TOKEN"