- General
- Endpoints
Retrieve Webhook List
GET
/webhook
Webhook
Request
Query Params
sort
string
optional
Example:
updated_at:desc,id
limit
integer
optional
>= 1
Default:
100
Example:
100
offset
integer
optional
>= 0
Default:
0
Example:
0
filter
string
optional
Example:
created_at:gt:2020-09-26,and,(id:not:starts_with:0000,or,id:contains:FFFF)
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' \
--header 'x-api-key;' \
--header 'x-api-env;'
Responses
🟢200Ok
application/json
Body
count
integer <uint64>
optional
>= 0
Default:
1
limit
integer <uint64>
optional
>= 0<= 1000
Default:
100
offset
integer <uint64>
optional
>= 0
Default:
0
data
array[object (Webhook) {17}]
optional
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
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
{
"count": 1,
"limit": 100,
"offset": 0,
"data": [
{
"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"
}
]
}
🟠401Not Logged In
Modified at 2024-10-04 09:04:55