Webhook
This service is in charge of sending project and deliverable status information to an endpoint that you provide. It works not only for API projects but also for projects created on the platform. The info will always be sent using the POST method, and will be sent with the following structure:
{
"projectId": "PROJECT_ID", // ALWAYS
"mainService": "MAIN_SERVICE_ID", // ALWAYS
"serviceCategoryId": "SERVICE_CATEGORY_ID", // WHEN THE NOTIFICATION IS ABOUT A DELIVERABLE
"deliverableId": "DELIVERABLE_ID", // WHEN THE PROJECT HAS A DELIVERABLE
"urls": "URL", // WHEN THE PROJECT HAS THE DELIVERABLE READY
"status": "STATUS", // ALWAYS
"timestamp": "TIME_STAMP_OF_THE_NOTIFICATION", // ALWAYS
"dateTime": "DATE_TIME_OF_THE_NOTIFICATION" // ALWAYS
}