Get Endpoint
GET /v1/webhooks/endpoints/{endpoint_id}
Authentication
Requires authentication via: OAuth2PasswordBearer.
Parameters
| Name | In | Type | Required | Description | Constraints |
|---|---|---|---|---|---|
endpoint_id | path | string | Yes | ||
X-API-Key | header | string | null | No | nullable |
Responses
200
Successful Response
application/json
Resolved schema:
{
"properties": {
"id": {
"type": "string",
"title": "Id"
},
"user_id": {
"type": "integer",
"title": "User Id"
},
"url": {
"type": "string",
"title": "Url"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Description"
},
"status": {
"type": "string",
"title": "Status"
},
"enabled": {
"type": "boolean",
"title": "Enabled"
},
"subscribed_event_patterns": {
"items": {
"type": "string"
},
"type": "array",
"title": "Subscribed Event Patterns"
},
"signing_version": {
"type": "string",
"title": "Signing Version"
},
"secret_hint": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Secret Hint"
},
"timeout_seconds": {
"type": "integer",
"title": "Timeout Seconds"
},
"max_retries": {
"type": "integer",
"title": "Max Retries"
},
"consecutive_failures": {
"type": "integer",
"title": "Consecutive Failures"
},
"last_verified_at": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"title": "Last Verified At"
},
"last_delivery_at": {
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "null"
}
],
"title": "Last Delivery At"
},
"last_error": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Last Error"
},
"created_at": {
"type": "string",
"format": "date-time",
"title": "Created At"
},
"updated_at": {
"type": "string",
"format": "date-time",
"title": "Updated At"
}
},
"type": "object",
"required": [
"id",
"user_id",
"url",
"status",
"enabled",
"signing_version",
"timeout_seconds",
"max_retries",
"consecutive_failures",
"created_at",
"updated_at"
],
"title": "WebhookEndpointResponse"
}
Field details:
| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
id | string | Yes | ||
user_id | integer | Yes | ||
url | string | Yes | ||
description | string | null | No | nullable | |
status | string | Yes | ||
enabled | boolean | Yes | ||
subscribed_event_patterns | array<string> | No | ||
subscribed_event_patterns[] | string | No | ||
signing_version | string | Yes | ||
secret_hint | string | null | No | nullable | |
timeout_seconds | integer | Yes | ||
max_retries | integer | Yes | ||
consecutive_failures | integer | Yes | ||
last_verified_at | string | null | No | format=date-time, nullable | |
last_delivery_at | string | null | No | format=date-time, nullable | |
last_error | string | null | No | nullable | |
created_at | string | Yes | format=date-time | |
updated_at | string | Yes | format=date-time |
422
Validation Error
application/json
Resolved schema:
{
"properties": {
"detail": {
"items": {
"properties": {
"loc": {
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"type": "array",
"title": "Location"
},
"msg": {
"type": "string",
"title": "Message"
},
"type": {
"type": "string",
"title": "Error Type"
}
},
"type": "object",
"required": [
"loc",
"msg",
"type"
],
"title": "ValidationError"
},
"type": "array",
"title": "Detail"
}
},
"type": "object",
"title": "HTTPValidationError"
}
Field details:
| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
detail | array<object> | No | ||
detail[] | object | No | ||
detail[].loc | array<string | integer> | No | ||
detail[].loc[] | string | integer | No | ||
detail[].msg | string | No | ||
detail[].type | string | No |