Skip to main content

Documentation

Resend Webhook

Resend a webhook that was not sent successfully.

Use List Webhooks to find the IDs of webhooks. You can resend a webhook that is in status ERR.

    • webhook

    • The webhook ID. String starting with wh_.

  • /v1/webhooks/:webhook

  • Resend Webhook

  • curl -X post 'https://sandboxapi.rapyd.net/v1/webhooks/wh_9e7d64a064e9322003fe249ef18ac0cc' \
    -H 'access_key: your-access-key-here' \
    -H 'Content-Type: application/json' \
    -H 'idempotency: your-idempotency-parameter-here' \
    -H 'salt: your-random-string-here' \
    -H 'signature: your-calculated-signature-here' \
    -H 'timestamp: your-unix-timestamp-here' \
    --data-raw: ''
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "",
            "response_code": "",
            "operation_id": "87630b63-1013-41dd-a910-405681c333d2"
        },
        "data": {
            "token": "wh_9e7d64a064e9322003fe249ef18ac0cc",
            "type": "BENEFICIARY_CREATED",
            "data": {
                "id": "beneficiary_6fc7e1a5a7d5e0cfe464bf0d690bd13e",
                "last_name": "Doe",
                "first_name": "John",
                "country": "GB",
                "entity_type": "individual",
                "address": "456 Second Street",
                "name": "John Doe",
                "postcode": "10101",
                "city": "Anytown",
                "account_number": "BG96611020345678",
                "currency": "GBP",
                "email": "jdoe@rapyd.net",
                "identification_type": "passport",
                "identification_value": "*********",
                "bank_name": "gb_local_bank",
                "bic_swift": "IIIGGB22",
                "sort_code": "123225",
                "ach_code": "123456789"
            },
            "attempts": [],
            "status": "RET",
            "last_attempt_at": 1768814404,
            "created_at": 1768744638,
            "next_attempt_at": 1768814419
        }
    }