Authentication
Webhook authenticity can be verified by theX-Plugin-Hmac-Sha256
HTTP header which is included with every webhook request. You can compare this header value with the HMAC generated locally to ensure that the request was not spoofed or modified in transit. The HMAC “message” is the entire request body and the HMAC “secret” is the secret_key
associated with the webhook.
PHP Example
Webhook Retry Intervals
Webhook retries occur for any non-20X response. There is a 3-second connect timeout and a 5-second overall timeout. ShipStream will make up to 14 retires. Each failed retry will be delayed. Instead of making the 15th attempt, ShipStream will mark the queued webhook call with the status “failed”. Retry Intervals:- +1 minute
- +2 minutes
- +4 minutes
- +8 minutes
- +15 minutes
- +30 minutes
- +1 hour
- +2 hours
- +4 hours
- +8 hours
- +16 hours
- +24 hours
- +24 hours
- +24 hours
Methods
Entity Properties
webhook.list
webhook.list()
Retrieve webhooks list.
Parameters
The method is used without parameters.Return Value
An array of objects with webhook information.Example Request
Request
Example Response
Response
webhook.create
webhook.create(object $webhookData)
Create new webhook for a single or multiple topics.
Parameters
Webhook data.
Return Value
true
if webhook was successfully created.
Example Request
Request
Example Response
Response
Error Codes
code | message |
---|---|
101 | Invalid data given. Details in error message. |
102 | An unexpected error occurred while creating the webhook. |
106 | Webhook not created. Details in error message. |
webhook.update_status
webhook.update_status(string $topic, number $status)
Update webhook status.
Parameters
Topic
Status. Allowed values: “0” - inactive or “1” - active.
Return Value
true
if status was successfully updated.
Example Request
Request
Example Response
Response
Error Codes
code | message |
---|---|
100 | Error changing status for specified webhook. Details in error message. |
webhook.delete
webhook.delete(int $webhookId)
Delete webhook.
Parameters
Webhook Id.
Return Value
true
if webhook was successfully deleted.
Example Request
Request
Example Response
Response
Error Codes
code | message |
---|---|
103 | Webhook not exists. |
104 | An unexpected error occurred while deleting the webhook. |
105 | Webhook not deleted. Details in error message. |
Entity Properties
Webhook Properties
The internal webhook ID.
Sequential ID of each payload so missed events can be detected easily.
Flag to determine whether the webhook is active. Allowed values: “0” - inactive or “1” - active.
Either a string with one or more topics separated by commas or an array of topics which the webhook is subscribed to.
Url for the webhook callback.
Extra headers.
Secret Key is used for the webhook signature.