GET
/
backups
/
{backupUUID}
Retrieve backup
curl --request GET \
  --url https://api.fluxend.app/backups/{backupUUID} \
  --header 'Authorization: <authorization>' \
  --header 'X-Project: <x-project>'
{
  "content": {
    "completedAt": "<string>",
    "error": "<string>",
    "projectUuid": "<string>",
    "startedAt": "<string>",
    "status": "<string>",
    "uuid": "<string>"
  },
  "errors": [
    "<string>"
  ],
  "metadata": "<any>",
  "success": true
}

Headers

Authorization
string
required

Bearer Token

X-Project
string
required

Project UUID

Path Parameters

backupUUID
string
required

Backup UUID

Response

200
application/json

Backup details

The response is of type object.