useGrant
Clients

List all clients

Retrieve all clients.

GET
/v1/providers/{providerId}/clients

Authorization

AuthorizationRequiredBearer <token>

In: header

Path Parameters

providerIdRequiredstring

Unique identifier for a provider.

Format: "uuid"
curl -X GET "https://sdk.usegrant.dev/v1/providers/497f6eca-6276-4993-bfeb-53cbbbba6f08/clients" \
  -H "Authorization: Bearer <token>"

Clients retrieved successfully.

[
  {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "name": "Acme Auth Client",
    "audience": "sts.amazonaws.com"
  }
]