ApprovalResponse
The response to an Approve, Reject, or Reopen action on an Entry Sheet.
The results
array will be empty, but the status
array will contain
any status (confirmation) messages generated by the action.
HTTP status code of the response for reference purposes.
200
200
Indicates whether the request was successful (normally true
if it's
not an error response).
true
URL of the current request / resource, for reference purposes.
https://example.apps.journyx.com/api/v1/users
Any status (confirmation) messages generated by the Approve, Reject, or Reopen action.
["The sheet status was changed to approved.","The sheet status was changed to open."]
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": [
"The sheet status was changed to approved.",
"The sheet status was changed to open."
],
"errors": [
"string"
],
"warnings": [
"string"
],
"info": [
"string"
],
"results": [
{}
]
}