This repository has no description
1{
2 "lexicon": 1,
3 "id": "org.tangled.temp.repo.retryWebhookDelivery",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Re-send a specific webhook delivery.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": ["repoDid", "webhookId", "deliveryId"],
13 "properties": {
14 "repoDid": {
15 "type": "string",
16 "format": "did",
17 "description": "DID of the repository as minted by the knot."
18 },
19 "webhookId": {
20 "type": "integer",
21 "description": "Webhook ID that owns the delivery."
22 },
23 "deliveryId": {
24 "type": "string",
25 "description": "UUID of the delivery to retry."
26 }
27 }
28 }
29 },
30 "errors": [
31 { "name": "WebhookNotFound" },
32 { "name": "DeliveryNotFound" }
33 ]
34 }
35 }
36}