Revokes one payment method share. Beta

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-2/payment-methods/{paymentMethodId}/shares/{shareId}

Deletes a single payment method share by its ID. The share must belong to the given payment method.

Path parameters

  • paymentMethodId string(uuid) Required

    The ID of the payment method the share belongs to.

  • shareId string(uuid) Required

    The ID of the payment method share to revoke.

Responses

  • 204

    The payment method share was deleted.

  • 401

    Client authentication failed.

  • 403

    Missing one or more required scopes.

  • 404

    The payment method or share was not found.

  • 500

    An internal server error occurred.

DELETE /2026-2/payment-methods/{paymentMethodId}/shares/{shareId}
curl \
 --request DELETE 'https://api.pace.cloud/payment/2026-2/payment-methods/ca1367ed-7e4f-4b1a-9c51-eb2cd14f577c/shares/92e5ec38-2a2c-4040-8158-f053b1f45054' \
 --header "Authorization: Bearer $ACCESS_TOKEN"