- General
- Endpoints
Retrieve Single Webhook
GET
/webhook/{webhook_id}
Webhook
Request
Path Params
webhook_id
string <uuid>
required
Example:
497f6eca-6276-4993-bfeb-53cbbbba6f08
Query Params
show
string
optional
Example:
id,updated_at
hide
string
optional
Example:
created_at,updated_at
Header Params
x-api-key
string
required
Default:
{{api_key}}
x-api-env
string
required
Default:
{{api_env}}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.vplan.com/v1/webhook/497f6eca-6276-4993-bfeb-53cbbbba6f08' \
--header 'x-api-key;' \
--header 'x-api-env;'
Responses
🟢200Ok
application/json
Body
id
string <uuid>
read-onlyoptional
url
string <uri>
optional
NOTE
<= 512 characters
description
string
optional
<= 150 characters
active
boolean
optional
event_types
array[null (WebhookEventType Copy) {3}]
optional
enum<string>
WebhookEventTypeNormal
Allowed values:
card.createdcard.updatedcard.deletedcard.updated.mergedcollection.createdcollection.updatedcollection.deletedattachment.createdattachment.updatedattachment.deletedcomment.createdcomment.updatedcomment.deletedtime_tracking.createdtime_tracking.updatedtime_tracking.deleted
enum<string>
WebhookEventTypeNested
Allowed values:
card.label.attachedcard.label.detachedcard.resource.attachedcard.resource.detachedcollection.label.attachedcollection.label.detachedcollection.follower.attachedcollection.follower.detached
enum<string>
WebhookEventTypeNestedPivot
Allowed values:
card.activity.attachedcard.activity.detachedcard.activity.updatedcollection.activity.attachedcollection.activity.detachedcollection.activity.updatedcollection.checklist.createdcollection.checklist.updatedcollection.checklist.deletedcollection.checklist.item.attachedcollection.checklist.item.detachedcollection.checklist.item.updated
api_key_id
string
read-onlyoptional
<= 36 characters
Default:
NULL
developer_client_id
string
read-onlyoptional
<= 36 characters
Default:
NULL
third_party
boolean
read-onlyoptional
fail_streak
integer | null
read-onlyoptional
>= 0<= 4294967296
Default:
0
fail_streak_started_at
string <date-time> | null
read-onlyoptional
last_failed_at
string <date-time> | null
read-onlyoptional
mailed_warning_at
string <date-time> | null
read-onlyoptional
mailed_disabled_at
string <date-time> | null
read-onlyoptional
disabled_until
string <date-time> | null
read-onlyoptional
can_send
boolean
read-onlyoptional
created_at
string <date-time>
read-onlyoptional
updated_at
string <date-time>
read-onlyoptional
Example
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"url": "http://example.com",
"description": "string",
"active": true,
"event_types": [
"card.created"
],
"api_key_id": "NULL",
"developer_client_id": "NULL",
"third_party": true,
"fail_streak": "0",
"fail_streak_started_at": "2019-08-24T14:15:22Z",
"last_failed_at": "2019-08-24T14:15:22Z",
"mailed_warning_at": "2019-08-24T14:15:22Z",
"mailed_disabled_at": "2019-08-24T14:15:22Z",
"disabled_until": "2019-08-24T14:15:22Z",
"can_send": true,
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}
🟠404Not Found
🟠401Not Logged In
Modified at 2024-10-04 09:04:55