Verify 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
POST /2026-1/payment-methods/{paymentMethodId}/verify

Verify a specific payment method to ensure that it can be used for payments.

Path parameters

  • paymentMethodId string(uuid) Required

    The unique identifier of the payment method to verify.

Responses

  • 204

    The payment method was verified successfully.

  • 401

    Client authentication failed.

  • 403

    Missing one or more required scopes.

  • 500

    An internal server error occurred.

POST /2026-1/payment-methods/{paymentMethodId}/verify
curl \
 --request POST 'https://api.pace.cloud/payment/2026-1/payment-methods/95215313-0dde-4d1e-84a0-6c73072acd08/verify' \
 --header "Authorization: Bearer $ACCESS_TOKEN"