In this article, we will review how to trigger the backup of projects using API in G.A. Suite.
1. The first step is to get the G.A. Suite API key. You can access the App Settings and copy the key by this link:
https://gas.fluentpro.com/Account/Apps
2. Contact our Support Team at support@fluentpro.com to request a ServiceId (customer product UID) that will be needed to start a backup action. You can also use the chat option from the G.A. Suite site directly.
3. To start a backup action use the following API method:
method: POST
url: https://gas.fluentpro.com/api/Backup/New
headers:
API_KEY: <api key from the page>
body params:
{
"ServiceID": "<customer product uid>",
"Url": "<pwa url>",
"SelectedProjects": [
{
"Uid": "<project 1 id>"
}
{
"Uid": "<project 2 id>"
}
],
"SiteBackupMode": 2, // to not backup sites
"Email": "<custom email to get notifications when backup completed>"
}