CreateItemResponse
The item was successfully created.
This is a minimal response that indicates whether the request was successful and provides the URI of the created item. To retrieve additional details or the full item, you may need to make additional requests.
info
See the Location header for the URL of the new item,
as well as the X-Item-Id and X-Item-Table headers for the ID and
table name of the new item.
response_codeinteger
The response code.
Example: 
201successboolean
Indicates whether the request was successful.
Example: 
trueuriuri
The URI of the created item.
Example: 
https://example.apps.journyx.com/api/v1/users/123CreateItemResponse
{
  "response_code": 201,
  "success": true,
  "uri": "https://example.apps.journyx.com/api/v1/users/123"
}