Components
The result string for a delegation request contains to the following information:
Property | Value | Required | Details |
---|---|---|---|
Timestamp | When the request was processed | Yes | The ISO 8601 extended format date and time in UTC when request was processed
|
Success | True or False | Yes | True if the request was processed successfully. False otherwise. |
Request | Original request stringĀ | Yes | The original request string is preseved to document the actions taken for a successful request or aid in resolving issues when a request could not be processed successfully.
|
Error | Error message when Success is False | No | Contains a short description of why the request could not be processed as submitted. |
Example
The following JSON string is an example of a result string:
Code Block |
---|
{ "Timestamp":"2024-02-22T10:54:18.830Z", "Success":true, "Request":"{\"Timestamp\":\"2024-02-22T10:53:55.604Z\",\"Type\":\"Delegation\",\"Action\":\"add\",\"Path\":\"ou=test3,ou=test-delegation,ou=alex,ou=departments,dc=austin,dc=utexas,dc=edu\",\"Principal\":\"alex-accounts\",\"Delegation\":\"group\",\"RequestedBy\":\"alex-admiral\",\"RequestedFor\":\"barthag\"}" } |