I am working with orders hook, I created a hook, to which I pass an endpoint as indicated in the documentation, everything works perfectly. Now I would like to inform, for example, an external transporter when a product is ready to withdraw what would be the correct status to indicate this.
I think it could be invoiced or order-completed, ready-for-handling.
{
"filter": {
"type": "FromWorkflow",
"status": [
"order-completed",
"handling",
"ready-for-handling",
"waiting-ffmt-authorization",
"cancel",
"invoiced"
]
},
"hook": {
"url": "https://someweb.com/vtex",
"headers": {
"Content-Type": "application/json",
"traza": "swagger-traza",
"aplicacionOrigen": "swagger"
}
}
}