List backup configurations
List all the backup configurations for you account
GET api/user/backup-configurations
Example request:
curl -X GET "https://ploi.io/api/user/backup-configurations" \
-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"
}
],
"links": {
"first": "https://ploi.io/api/user/backup-configurations?page=1",
"last": "https://ploi.io/api/user/backup-configurations?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "«",
"active": false
},
{
"url": "https://ploi.io/api/user/backup-configurations?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "»",
"active": false
}
],
"path": "https://ploi.io/api/user/backup-configurations",
"per_page": 15,
"to": 13,
"total": 13
}
}