Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Endpoint ID:

1200

Method
Status
colourGreen
titlePOST
URL:

/housekeeping/policy/{policyID}/trigger-for-selection


policyID

A GUID identifying the Housekeeping policy to trigger

Request body:

An array of entityIDs which comprise the Housekeeping selection

Code Block
languagejs
{
	"entities": [12345, 23456, 34567]
}



Span (Deprecated)
stylewhite-space:nowrap

Response body:


An execution ID, identifying the asynchronous policy execution that has been triggered.

Code Block
languagejs
{
	"executionID": 12345
}


Status codes:

HttpStatusCode
ApiStatusSubCode
Description
200
The policy schedule has been triggered
400
The policy has not been configured correctly
412412.1The policy schedule may not be triggered by the API in this way
404404.4

policyID not found

...