List backup configurations

List all backup configurations linked to your account.


GET/api/user/backup-configurations

Get all backup configurations

This endpoint returns all backup configurations connected to your account.

Request

GET
/api/user/backup-configurations
curl -G "https://ploi.io/api/user/backup-configurations" \
  -H "Authorization: Bearer {token}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json"

Response

{
  "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,
    "path": "https://ploi.io/api/user/backup-configurations",
    "per_page": 15,
    "to": 13,
    "total": 13
  }
}