# Revoked recurring token

<a href="https://docs.solidgate.com/payments/integrate/webhooks/" target="_blank">Webhooks</a> notify about a revoked recurring token for alternative payment methods.
<blockquote>
<p>Duplicate webhook events can occur. Implement <a href="https://docs.solidgate.com/payments/integrate/webhooks/#event-handling" target="_blank">idempotency</a> on your end to avoid processing the same event twice.</p>
</blockquote>

Endpoint: POST APMRevokedRecurringToken
Version: 1.0.0
Security: merchant, signature

## Header parameters:

  - `merchant` (string, required)

  - `signature` (string, required)

  - `solidgate-event-id` (string, required)
    Unique event identifier.

  - `solidgate-event-created-at` (string, required)
    Event creation time in UTC as <a href="https://en.wikipedia.org/wiki/ISO_8601" target="_blank">ISO 8601</a> with milliseconds.

  - `solidgate-event-type` (string, required)
    Event type, indicating the specific event that occurred.

## Request fields (application/json):

  - `token` (string, required)
    Recurring token.
    Example: 923bb4e6-4a5f-41ec-81fb-28eb8a152e55

  - `initial_order_id` (string, required)
    Initial order identifier.
    Example: 22738n

  - `cancelled_at` (string, required)
    Datetime when the token was cancelled.
    Example: 2024-12-21 11:21:30

