webhooks
Subscribe to webhook
Subscribes to a specific type of webhook. If a store_id is passed in, the webhooks will only be triggered for that specific store_id.
Note: Webhooks can only be modified through the ShipStation UI under Account Settings.
post/webhooks/subscribe
Request body
Example request
{
"target_url": "http://someexamplewebhookurl.com/neworder",
"event": "ORDER_NOTIFY",
"store_id": 12345,
"friendly_name": "My Webhook"
}Response
Webhook subscription created successfully
Example response
{
"WebHookID": 123456
}