In the webhook docs (Webhooks – Developer Resources | ShipHero) you state that:
When we send the webhook we wait for a response
HEADERS: Content-Type:application/json
BODY:
{
"code": "200",
"Status": "Success"
}
The timeout for this response to get back is 5 seconds with 5 retries per trigger
But the examples later on in that page give expected responses like:
{
"code": "200",
"Message": "Success"
}
Furthermore, in my testing, you don’t seem to retry so long as you get an HTTP 200 status code in the response.
Can you tell me which is correct?