200
Authorized operation result.
application/json
{
"$ref": "#/components/schemas/CanonicalListWebhookEndpointsResponse",
"type": "object",
"properties": {
"data": {
"$ref": "#/components/schemas/CanonicalWebhookEndpointList",
"type": "object",
"properties": {
"schemaVersion": {
"type": "string",
"const": "partner-webhook-endpoints-v2"
},
"endpoints": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CanonicalWebhookEndpoint",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"partnerId": {
"type": "string"
},
"url": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"active",
"retiring",
"disabled"
]
},
"signatureVersion": {
"type": "string",
"const": "pc-webhook-ed25519-v1"
},
"replacesEndpointId": {
"type": "string"
},
"overlapUntil": {
"type": "string"
},
"createdAt": {
"type": "string"
},
"updatedAt": {
"type": "string"
}
},
"required": [
"id",
"partnerId",
"url",
"status",
"signatureVersion",
"createdAt",
"updatedAt"
]
}
}
},
"required": [
"schemaVersion",
"endpoints"
]
},
"requestId": {
"type": "string"
}
},
"required": [
"data",
"requestId"
],
"x-code-source": "lib/partner-api/v2/webhook-endpoints.ts"
}