v1

latestOpenAPI 3.0.02026-08-064311,0881.3 MB
dataArchivingManagement

Get all data archiving destinations.

Get a list of all data archiving destinations configured for installed collectors.

get/v1/dataarchiving/destinations

Query parameters

limitinteger

Limit the number of destinations returned in the response. The number of destinations returned may be less than the limit.

tokenstring

Continuation token to get the next page of results. A page object with the next continuation token is returned in the response body. Subsequent GET requests should specify the continuation token to get the next page of results. token is set to null when no more pages are left.

Response

List of all data archiving destinations.

nextTokenstring

Next continuation token.

Example response

{
  "nextToken": "VEZuRU4veXF2UWFCUURYSDNQUzJxWlpRRUsvTlBieXA",
  "data": [
    {
      "destinationName": "my-archive-destination",
      "destinationConfig": {
        "destinationType": "S3"
      },
      "createdAt": "2018-10-16T09:10:00Z",
      "createdBy": "0000000006743FDD",
      "modifiedAt": "2018-10-16T09:10:00Z",
      "modifiedBy": "0000000006743FE8",
      "id": "1"
    }
  ]
}