Reply API

Write a Reply

POST https://localhost:3030/api/reply/write

Request Body

Name
Type
Description

id

number

Article number

nickname

string

Reply writer

content

string

Reply content

{
    "success": true
}

Get a List of Reply by ID

GET https://localhost:3030/api/reply/list/:id

Path Parameters

Name
Type
Description

id

number

Article number

{
    "success": true,
    "count": 0,
    "reply": [...]
}

Get a Reply by ID

GET https://localhost:3030/api/reply/get-reply/:id

Path Parameters

Name
Type
Description

id

number

Reply number

Delete a Reply

DELETE https://localhost:3030/api/reply/delete/:id

Path Parameters

Name
Type
Description

id

number

Reply number

Modify a Reply

PUT https://localhost:3030/api/reply/modify

Request Body

Name
Type
Description

reply_no

number

Reply number

content

string

Reply content

Last updated