Account backups API

Account backups let you create a complete off-site backup of your Aha! account. They can be created, listed, and downloaded via the API.

An account backup may only be created once every 24 hours.

The backup file contains a representation of all of the data in the Aha! account, including all relationships. It does not contain user authentication data or integration secrets. The backup does not include any uploaded files.

Account backups are an Enterprise+ exclusive feature.

Download an account backup

GET /api/v1/account_backups/:id.tgz

Parameters
NameDescription
id *

Numeric ID of the backup

Example request

GET /api/v1/account_backups/6776850225728540419.tgz

Example CURL command

curl -g "https://company.aha.io/api/v1/account_backups/6776850225728540419.tgz" -X GET \
	-H "Authorization: Bearer 584b6d6b83405011f8c6903d2379f4afdf824cef867db391b7bcb5995f603a76" \
	-H "Content-Type: application/json" \
	-H "Accept: application/json"

Request

authorization: Bearer 584b6d6b83405011f8c6903d2379f4afdf824cef867db391b7bcb5995f603a76
contentType: application/json
accept: application/json

Response

Status: 200 OK
contentType: application/gzip