S.EE Docs
API 레퍼런스

텍스트 공유 수정

기존 텍스트 공유의 내용, 비밀번호 또는 만료 시간을 수정합니다.

PUT
/api/v1/text

Header Parameters

Authorization*string

Your API key

Request Body

application/json

Updated text content and settings

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

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