Skip to main content

Collect Accounts

Run one or more account collectors.

GET https://instance.securid.com/aveksa/command.submit?cmd=collectAccounts

Request

Parameters

collectAccounts
formatproperties - (Default) key=value. most useful when requesting a single object. If multiple objects are returned, values is a csv. ie key=value1,value2,value3 where value1 is the value for the first object, value2 is the value for the 2nd object, etc.

json - Useful format for parsing into javascript or other languages. See www.json.org for details.
nameThe friendly name of the collector. If no name is provided all collectors are processed.
businessSourceThe friendly name of the business source. If no business source is provided all business sources are processed.
forcetrue, false Indicates if a collection should be "forced", i.e. ignore circuit breaker thresholds.

Headers

Bearer token
Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
run-idThe id assigned to the collection.
run-source-xxThe names of the collectors that we processed as part of this run where xx is the run id.

Examples

Request

curl -K -X GET  \
"https://instance.securid.com/aveksa/command.submit?cmd=collectAccounts&format=json&name=Collector1" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"

Response

{
"data": {
"type": "collectAccounts",
"run-source-5514": "SAP SuccessFactors ADC",
"run-id": "5514"
}
}