GET
/
api
/
v1
/
platform
/
tenants
/
{tenant_id}
/
objects
/
resources
List object storage resource policies
curl --request GET \
  --url https://api.example.com/api/v1/platform/tenants/{tenant_id}/objects/resources \
  --header 'X-Api-Id: <x-api-id>' \
  --header 'X-Api-Nonce: <x-api-nonce>' \
  --header 'X-Api-Signature: <api-key>' \
  --header 'X-Api-Timestamp: <x-api-timestamp>'
[
  {
    "resource_id": "object_resource_001",
    "tenant_id": "tenant_001",
    "bucket": "utmos-objects",
    "credential_id": "object_credential_001",
    "key_prefix": "tenant_001/uploads/",
    "allowed_methods": [
      "PUT",
      "GET"
    ],
    "max_presign_ttl_seconds": 3600,
    "status": "ACTIVE",
    "request_id": "req-001"
  }
]

Authorizations

X-Api-Signature
string
header
required

UTMOS HMAC request signature with X-Api-Id, X-Api-Timestamp and X-Api-Nonce.

Headers

X-Api-Id
string
required

Platform or tenant administrator credential

X-Api-Timestamp
string
required

Unix seconds

X-Api-Nonce
string
required

Replay-protection nonce

X-Api-Signature
string
required

HMAC signature

X-Request-Id
string

Caller correlation ID; generated when omitted

Path Parameters

tenant_id
string
required

Tenant identifier

Query Parameters

limit
integer
default:100

Maximum number of records returned by a list endpoint. Defaults to 100; max 500.

Required range: 1 <= x <= 500

Response

OK

resource_id
string
tenant_id
string
bucket
string
credential_id
string
key_prefix
string
allowed_methods
string[]
max_presign_ttl_seconds
integer
status
enum<string>
Available options:
ACTIVE,
DISABLED,
DELETED
request_id
string