S.EE Docs
API 레퍼런스

단축 URL 삭제

지정한 단축 URL을 영구적으로 삭제합니다.

DELETE
/api/v1/shorten

Header Parameters

Authorization*string

Your API key

Request Body

application/json

Short URL identification

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

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