ApiManagementFga
GET
/v1/mgmt/fga/backup/{backupId}

Authorization

Descope Project ID and Management Key
AuthorizationBearer <token>

Project ID:Management Key as bearer token.

In: header

Path Parameters

backupId*string

Get an FGA backup by ID.

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