Webhooks
Find Webhook
POST
/webhooks/find
x-vessel-api-token*
{
"status": "200",
"example": {
"webhook": {
"createdTime": "2021-10-20T23:11:28.617Z",
"id": "v_webhook_1231241",
"projectId": "v_project_c63a7fbd9123123",
"url": "https://mycompany.io/webhooks/12312312"
}
}
}
curl --request POST \
--url https://api.vessel.dev/webhooks/find \
--header 'Content-Type: application/json' \
--header 'x-vessel-api-token: ' \
--data '{
"id": "v_webhook_12312312"
}'
Body
idrequired
string
Response
webhook
object
curl --request POST \
--url https://api.vessel.dev/webhooks/find \
--header 'Content-Type: application/json' \
--header 'x-vessel-api-token: ' \
--data '{
"id": "v_webhook_12312312"
}'
{
"status": "200",
"example": {
"webhook": {
"createdTime": "2021-10-20T23:11:28.617Z",
"id": "v_webhook_1231241",
"projectId": "v_project_c63a7fbd9123123",
"url": "https://mycompany.io/webhooks/12312312"
}
}
}