v1

latestOpenAPI 3.0.02026-08-064311,0881.3 MB
dataArchivingManagement

Create a data archiving destination.

Create a new data archiving destination.

post/v1/dataarchiving/destinations

Request body

destinationNamestring required

Name of the data archiving destination.

Example request

{
  "destinationName": "my-archive-destination",
  "destinationConfig": {
    "destinationType": "S3"
  }
}

Response

The data archiving destination has been created.

destinationNamestring required

Name of the data archiving destination.

createdAtstring date-time required

Creation timestamp in UTC in RFC3339 format.

createdBystring required

Identifier of the user who created the resource.

modifiedAtstring date-time required

Last modification timestamp in UTC.

modifiedBystring required

Identifier of the user who last modified the resource.

idstring required

Unique identifier for the data archiving destination.

Example response

{
  "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"
}