place.stream.server.deleteWebhook

did:web:stream.place View official

Documentation

Delete an existing webhook.

main procedure

Delete an existing webhook.

Input

Encodingapplication/json
id string Required

The ID of the webhook to delete.

Output

Encodingapplication/json
success boolean Required

Whether the webhook was successfully deleted.

Errors

WebhookNotFound The specified webhook was not found.
Unauthorized The authenticated user does not have access to this webhook.
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "id"
      ],
      "properties": {
        "id": {
          "type": "string",
          "description": "The ID of the webhook to delete."
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "WebhookNotFound",
      "description": "The specified webhook was not found."
    },
    {
      "name": "Unauthorized",
      "description": "The authenticated user does not have access to this webhook."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "success"
      ],
      "properties": {
        "success": {
          "type": "boolean",
          "description": "Whether the webhook was successfully deleted."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": null,
  "description": "Delete an existing webhook."
}

Lexicon Garden

@