GET/profiles

List profiles with optional filtering and pagination.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

limit?integer

Limit the number of profiles to return.

Range1 <= value <= 100
Default20
offset?integer

Offset the number of profiles to return.

Range0 <= value
Default0
query?string

Case-insensitive substring match against profile name or ID.

name?string

Exact-match filter on profile name using the database collation. In production, matching is case- and accent-insensitive. During the default-project migration, unscoped requests prefer a concrete default-project profile over a legacy unscoped profile with the same name.

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/profiles"
[  {    "id": "string",    "name": "string",    "created_at": "2019-08-24T14:15:22Z",    "updated_at": "2019-08-24T14:15:22Z",    "last_used_at": "2019-08-24T14:15:22Z"  }]