S.EE Docs
API Reference

Delete Text Sharing

Permanently deletes a text sharing. This action cannot be undone. The slug will become available for reuse after deletion.

DELETE
/api/v1/text

Header Parameters

Authorization*string

Your API key

Request Body

application/json

Text sharing identification

domain*string

The domain where the text sharing is hosted (e.g., "fs.to")

Lengthlength <= 255
slug*string

The slug of the text sharing to delete

Lengthlength <= 255

Response Body

application/json

curl -X DELETE "https://s.ee/api/v1/text" \  -H "Authorization: string" \  -H "Content-Type: application/json" \  -d '{    "domain": "string",    "slug": "string"  }'
{
  "code": 0,
  "data": {
    "tags": [
      {
        "id": 0,
        "name": "string"
      }
    ]
  },
  "message": "string"
}