Hello Team,
Hope you are doing well,
I want to create a webhook only for transfer_completed not for all events,
I want to reduce webhook requests to my website URL.
Could you please help me out with this?
Best Regards,
Shivang
Hello Team,
Hope you are doing well,
I want to create a webhook only for transfer_completed not for all events,
I want to reduce webhook requests to my website URL.
Could you please help me out with this?
Best Regards,
Shivang
Hi @shivang_codebrew , Unfortunately we don’t provide a way in the API to unsubscribe to certain Event topics, therefore you’ll receive all transfer related webhooks to your subscribed endpoint. We generally recommend you use asynchronous processing on your webhook endpoint along with a queueing system. This allows webhook notifications to be processed by a separate service that fetches data about the objects referenced in the webhook notifications. With this infrastructure, your webhook endpoint remains responsive even during high-volume bursts of webhook notifications.
@spencer Thanks for sharing,
I have another doubt, when we make fund-transfer, we do not get transaction_id in return, we get null in return, can you help me out with this, right now we are using SendBox.
Thanks for your time ![]()
Regards
Shivang
Are you referring to the request-body not having a transaction ID when you create a transfer? If so, we don’t return a response body when resources are created.
Following REST API design, any resource creation request will return an HTTP code “201 Created” the id of the newly resource in the "Location" response header itself.
Hope that helps! Let us know if you have any questions.
This topic was automatically closed after 365 days. New replies are no longer allowed.