Skip to main content

Get an uploaded backup's information

GET 

/configuration-hub/backups/uploads/:id

Returns all the information and status of an upload job.

  • sp:config-backups:read

Request

Path Parameters

    id stringrequired

    The id of the uploaded backup.

    Example: 3d0fe04b-57df-4a46-a83b-8f04b0f9d10b

Responses

List of existing uploaded backups.

Schema
  • Array [
  • jobId stringrequired

    Unique id assigned to this job.

    status stringrequired

    Possible values: [NOT_STARTED, IN_PROGRESS, COMPLETE, CANCELLED, FAILED]

    Status of the job.

    type stringrequired

    Possible values: [BACKUP, DRAFT]

    Type of the job, either Backup or Draft.

    tenant string

    The name of the tenant performing the upload

    requesterName string

    The name of the requester.

    created date-timerequired

    The time the job was started.

    modified date-timerequired

    The time of the last update to the job.

    name string

    The name assigned to the upload file in the request body.

    userCanDelete boolean

    Default value: true

    Is the job a regular backup job, if so is the user allowed to delete the backup file. Since this is an upload job it remains as false.

    isPartial boolean

    Default value: false

    Is the job a regular backup job, if so is it partial. Since this is an upload job it remains as false.

    backupType string

    Possible values: [UPLOADED, AUTOMATED, MANUAL]

    What kind of backup is this being treated as.

    hydrationStatus string

    Possible values: [HYDRATED, NOT_HYDRATED]

    have the objects contained in the upload file been hydrated.

  • ]
Loading...