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:
201
successboolean
Indicates whether the request was successful.
Example:
true
uriuri
The URI of the created item.
Example:
https://example.apps.journyx.com/api/v1/users/123
CreateItemResponse
{
"response_code": 201,
"success": true,
"uri": "https://example.apps.journyx.com/api/v1/users/123"
}