Using Webhooks

Registering a Webhook API docs

Once your vendor NDS is set up and can accept POST requests from the SDK services, you can register the webhook URL within your main application by calling the register webhook API as follows

Rust
sdk.register_webhook( "https://your-nds-service.com/notify?platform=ios&token=<PUSH_TOKEN>".to_string(), ) .await?;
Swift
Kotlin
React Native
Dart
Python
Go
C#

When the NDS receives a POST request for the registered webhook URL, it will forward the request data via push notification to the applications Service Extension (iOS) or Foreground Service (Android) to be handled by the Notification Plugin.

Unregistering a Webhook API docs

When a webhook is no longer needed you can unregister the webhook as follows:

Rust
sdk.unregister_webhook().await?;
Swift
Kotlin
React Native
Dart
Python
Go
C#

Developer note

Any payments that use a swap service will use the same registered webhook URL until the swap is complete.