http
POST /api/users HTTP/1.1
Host: api.example.com
Content-Type: application/json
Authorization: Bearer admin_token
{
"name": "Bob Mueller",
"email": "bob@example.com",
"role": "editor"
}
HTTP/1.1 201 Created
Location: /api/users/bob-mueller-id
Content-Type: application/json
{
"id": "bob-mueller-id",
"name": "Bob Mueller",
"email": "bob@example.com",
"role": "editor",
"created_at": "2025-10-01T10:45:00Z"
}