Versions Compared

Key

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

...

Expand
titleGET /api/v1/backup/{jobId}/status
Panel
borderColor#ccc
borderStylesolid

Get a backup job status.

Request

PATH PARAMETERS

parameter

type

description

jobIdString

- id of the generate backup job

Tip
titleExample Request
curl -H "Content-Type: application/json" -X GET -H "Authorization: Bearer $token" https://xray.cloud.xpand-it.com/api/v1/backup/34a4106b1d0948d1aae1170cc8df3bb4/status

Responses

200 OK : application/json : The status of the backup job is returned.

Code Block
titleExample Output 1
{
  "status": "wokingworking",
  "progressValue": "10%"
}
Code Block
titleExample Output 2
{
  "status": "successful",
  "fileUrl": "https://xray.cloud.xpand-it.com/api/v1/backup/file",
  "attachmentUrl": "https://xray.cloud.xpand-it.com/api/v1/backup/file/attachment"
}


404 BAD_REQUEST : application/json : No backup job with the given id was found.

Code Block
languagejs
titleExample Output
{
  "error": "job not found."
}


401 UNAUTHORIZED : application/json : The API token is not valid.

...