POST
/
v1
/
projects
/
{project}
/
data
/
{name}
/
backups
cURL
curl --request POST \
  --url https://api.example.com/v1/projects/{project}/data/{name}/backups \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "<string>",
  "name": "<string>"
}
'
{
  "created_at": "<string>",
  "name": "<string>",
  "status": "<string>",
  "updated_at": "<string>",
  "description": "<string>",
  "error": "<string>",
  "mode": "<string>",
  "parent": "<string>"
}

Path Parameters

project
string
required

Project name

name
string
required

Data volume name

Body

application/json
description
string | null
name
string | null

Response

Backup started

created_at
string
required
name
string
required
status
string
required
updated_at
string
required
description
string | null
error
string | null
mode
string | null
parent
string | null