Create Widget
POST /widgets
curl \
-X POST https://example.com/widgets \
-H "Content-Type: application/json" \
-d '{"name":"Goblin Staff of Sparks"}'
Request example
{
"name": "Goblin Staff of Sparks"
}
Response examples (400)
{
"errors": [
{
"title": "string",
"detail": "string",
"code": "string"
}
]
}