POST
/widgets
curl \
--request POST 'https://www.example.com/widgets' \
--header "Content-Type: application/json" \
--data '{"title":"string"}'
Request examples
{
"title": "string"
}
Response examples (422)
{
"errors": [
{
"title": "string",
"detail": "string",
"code": "string"
}
]
}