Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

Components

The result string for a delegation request contains to the following information:

PropertyValueRequiredDetails
TimestampWhen the request was processedYesThe ISO 8601 extended format date and time in UTC when request was processed
  • Example: 2024-01-02T04:05:06.007Z
SuccessTrue or FalseYesTrue if the request was processed successfully. False otherwise.
RequestOriginal 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.

  • Note: the original request string will have double quotation marks (") escaped
ErrorError message when Success is FalseNoContains 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:

{
	"Timestamp":"2024-01-02T04:05:06.007Z",
	"Success":true,
	"Request":"{\"Timestamp\":\"2024-01-02T03:04:05.006Z\",\"Type\":\"Delegation\",\"Action\":\"grant\",\"Path\":\"ou=computers,ou=example,ou=departments,dc=austin,dc=utexas,dc=edu\",\"Principal\":\"EXAMPLE-ComputerAdmins\",\"Delegation\":\"computer\",\"RequestedBy\":\"EXAMPLE-abcd1234\"}"
}
  • No labels