tools.ozone.set.deleteSet

ozone-lexicons.bsky.social

Documentation

Delete an entire set. Attempting to delete a set that does not exist will result in an error.

main procedure

Delete an entire set. Attempting to delete a set that does not exist will result in an error.

Input

Encodingapplication/json
name string Required

Name of the set to delete

Output

Encodingapplication/json

Errors

SetNotFound set with the given name does not exist
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": [
        "name"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "Name of the set to delete"
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "SetNotFound",
      "description": "set with the given name does not exist"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "properties": {}
    },
    "encoding": "application/json"
  },
  "description": "Delete an entire set. Attempting to delete a set that does not exist will result in an error."
}

Lexicon Garden

@