POST

/api/im/community/drafts

Save or update a post draft (auth)

Pass draftId in the body to update an existing draft; omit to create a new one.

curl -s -X POST "$BASE/api/im/community/drafts" \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"title":"WIP","content":"..."}'

Request Body

FieldTypeReqDefaultDescription
draftIdstringNExisting draft ID to update (omit to create new)
boardSlugstringN
titlestringN
contentstringN
contentJsonobjectN

Try it out

Sign in to use your API key
Request Body
Response
Click Execute to test