Partner Banking Docs
HomeStatus
  • Introduction
  • Getting Started
    • Partner Onboarding
    • Security
    • Authentication
    • Payload Signing
    • API Hosts
  • Concepts
    • API Connectivity Test
    • Accounts
      • Primary Accounts
      • Virtual Accounts
      • Getting Accounts
      • Balances Explained
    • Payments
      • Payment Simulation
      • Inbound Payments
      • Internal Payments
      • Counterparty Validation
      • Outbound Payments
      • Payment Details
        • Payment Details with ID
        • Payment Details with External Reference
    • Transactions
      • Activity Feed
    • Webhooks
      • Webhook Guidelines
      • Supported Events
      • Testing Webhooks
  • Full Specification
  • Return Home
Powered by GitBook
On this page

Was this helpful?

  1. Concepts
  2. Webhooks

Testing Webhooks

PreviousSupported Events

Last updated 4 months ago

Was this helpful?

You can use the following API to test your webhook integrations including the signature verification.

Below API must be triggered with the following HTTP payload.

{
    "message": "This is webhook test message payload"
}

Remember, this endpoint requires signature verification like any other webhook messages.

When this API is called, a subsequent test webhook will be triggered towards your configured URL handlers. Please refer Supported Events page for more information about the expected event structure.

post
Header parameters
authorizationstringOptional

Authorization header containing your API Token

x-alg-noncestringOptional

Nonce used to generate the payload signature

x-alg-signaturestringOptional

Payload signature

datestringOptional

Date of the request un UTC/GMT

Responses
201Success
post
POST /v1/partner/webhook-test HTTP/1.1
Host: api-url
Accept: */*
201Success

No content