{ "title": "string", "body": "string" }
curl --location --request POST 'http://test-cn.your-api-server.com/posts' \ --header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2OTA5NjE0OTUsInN1YiI6MTB9.L5k45Gx7OvCRBEBTcyWaCpfGaa873xs3uz924EWuXjA' \ --header 'Content-Type: application/json' \ --data-raw '{ "title": "string", "body": "string" }'
{ "post": { "ID": 0, "CreatedAt": "string", "UpdatedAt": "string", "DeletedAt": null, "Title": "string", "Body": "string" } }