Get backup configuration
Get a backup configuration from your account
GET api/user/backup-configurations/{backupConfiguration}
Example request:
curl -X GET "https://ploi.io/api/user/backup-configurations/{backupConfiguration}" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Example response:
HTTP/1.1 200 OK
Content-Type: application/json
{
"data": {
"id": 1,
"label": "Dropbox",
"type": "dropbox",
"humanType": "Dropbox",
"created_at": "2023-09-18T12:29:04.000000Z"
}
}