How to implement webhooks?
PlumPro APIs are now capable of returning callbacks to your pre-registered webhook URL.
Note: The Webhooks are only functional for Plum Pro APIs but not with Storefront Integration, Plum Pro Dashboard & Xoxo Link Integrations
Step 1: To receive the updated ('delivered' or 'canceled') reward delivery status, you will have to set up your callback URL for the listener to push the status to the required platforms.
Important
Note 1: These statuses are asynchronous, and to ensure that they aren't blocked, it's vital to whitelist Xoxoday's callback URL IP: 52.76.120.90. Doing so will help facilitate uninterrupted callback notifications from this IP.
Note 2: Our systems will send an attempt to post to a registered webhook URL thrice, after which the webhook URL will be ‘disabled’. However, this can be ‘enabled’ through our dashboard again.
Payload
Parameters
Parameter Name | Type | Description |
---|---|---|
ID | Integer(20) | Unique Webhook ID to identify that the webhook is thrown |
Order ID | Integer(11) | Unique Xoxo Order ID whenever an order is placed via the Plum API |
PO number | String(100) | PoNumber if provided by the client while placing an order |
OrderDate | String(19) | Date when an order is placed |
Delivery Status | String(9) | Order delivery status. Can be delivered or canceled |
CreatedAt | String(19) | When callback was invoked |
Last updated