공지 등록
POST http://{dashboard-domain}/v1.0/db/notice
Request Body
Name
Type
Description
title*
string
공지 제목
url*
string
공지 게시물 URL
desc*
string
공지 본문
{
"return": 0,
"message": "success"
}{
"title": "공지 제목",
"desc": "공지 본문",
"url": "공지 URL"
}curl --location --request POST 'http://{dashboard-domain}/v1.0/db/notice' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "공지 제목",
"desc": "공지 본문",
"url": "공지 URL"
}'Last updated