ApiManagementFga
GET
/v1/mgmt/fga/backups

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

List all FGA backups.

curl -X GET "https://api.descope.com/v1/mgmt/fga/backups"
{  "backups": [    {      "id": "string",      "projectId": "string",      "status": "string",      "schemaVersion": 0,      "tupleCount": 0,      "createdAt": 0,      "completedAt": 0,      "errorMessage": "string"    }  ]}
export interface Response {backups?: Backup[]}export interface Backup {id?: stringprojectId?: stringstatus?: stringschemaVersion?: numbertupleCount?: numbercreatedAt?: numbercompletedAt?: numbererrorMessage?: string}
Was this helpful?