v1

latestOpenAPI 3.0.0Apache 2.02026-07-17504188.8 KB
Backend

List all backends.

get/v1/{tenantId}/backends

Query parameters

type'aws-s3' | 'azure-blob' | 'gcp-s3' | 'fusionstorage-object' | 'ibm-cos' | 'yig' | 'aws-file' | 'azure-file'

Filter the backend by backend type.

namestring

Filter the backend by name.

regionstring

Filter the backend by region.

offsetinteger

The number of items to skip before starting to collect the result set

limitinteger

The numbers of items to return

sortstring

The sort key and direction of items to return, string must like:"id:asc,name:desc"

Response

successful operation.

nextinteger

Example response

{
  "backends": [
    {
      "id": "5ea809d2553b0f000116be32",
      "tenantId": "94b280022d0c4401bcf3b0ea85870519",
      "userId": "558057c4256545bd8a307c37464003c9",
      "name": "backend001",
      "type": "aws-s3",
      "region": "ap-south-1",
      "endpoint": "s3.ap-south-1.amazonaws.com"
    }
  ],
  "next": 1
}