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.
Create an account backup
POST /api/v1/account_backups
The backup may take some time to generate (as long as ten minutes in a large account). You should poll the GET endpoint to see when the backup is complete. You should not poll more frequently than once every twenty seconds. Returns an HTTP status of 429 if a backup was already created within the last 24 hours.
Example request
POST /api/v1/account_backups
Example CURL command
curl "https://company.aha.io/api/v1/account_backups" -d '' -X POST \
-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/json; charset=utf-8
Response body