POST
/
backups
Create backup
curl --request POST \
  --url https://api.fluxend.app/backups \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'X-Project: <x-project>' \
  --data '{
  "projectUUID": "<string>"
}'
{
  "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

Body

application/json

Project UUID

The body is of type object.

Response

201
application/json

Backup created

The response is of type object.