POST
/posts
curl \
--request POST 'http://localhost:8080/posts' \
--header "Content-Type: application/json" \
--data '{"title":"string","content":"string","postType":"string","privacy":"string","metadata":"string"}'
Request examples
{
"title": "string",
"content": "string",
"postType": "string",
"privacy": "string",
"metadata": "string"
}
Response examples (200)
{
"title": "string",
"content": "string",
"postType": "string",
"privacy": "string",
"metadata": "string"
}