This repository has no description
1{
2 "lexicon": 1,
3 "id": "org.tangled.temp.repo.deleteWebhook",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Delete a webhook from a repository.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": ["repoDid", "id"],
13 "properties": {
14 "repoDid": {
15 "type": "string",
16 "format": "did",
17 "description": "DID of the repository as minted by the knot."
18 },
19 "id": {
20 "type": "integer",
21 "description": "Webhook ID to delete."
22 }
23 }
24 }
25 },
26 "errors": [
27 { "name": "WebhookNotFound" }
28 ]
29 }
30 }
31}