UnpagedResponse
A success response that may be returned by certain API endpoints
that do not support pagination; the entire result set is returned in a single
response as an array in the results field.
HTTP status code of the response for reference purposes.
200200Indicates whether the request was successful (normally true if it's
not an error response).
trueURL of the current request / resource, for reference purposes.
https://example.apps.journyx.com/api/v1/usersAn array of status (confirmation) messages that occurred during the request. This field may be empty.
In the UI, these are sometimes displayed with a green icon.
An array of error messages that occurred during the request. This field may be empty.
In the UI, these are sometimes displayed with a red error icon.
An array of warning messages that occurred during the request. This field may be empty.
In the UI, these are sometimes displayed with a yellow warning icon.
An array of informational messages that occurred during the request. This field may be empty.
In the UI, these are sometimes displayed with a blue info icon.
{
"response_code": 200,
"success": true,
"uri": "https://example.apps.journyx.com/api/v1/users",
"status": [
"string"
],
"errors": [
"string"
],
"warnings": [
"string"
],
"info": [
"string"
],
"results": [
{}
]
}