cURL
curl --request GET \ --url https://api.example.com/profiles \ --header 'Authorization: Bearer <token>'
{ "items": [ { "profile_id": "<string>", "name": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" } ], "page": 123, "page_size": 123, "has_next": true, "has_previous": true }
The access token received from the authorization server in the OAuth 2.0 flow.
Page number
x >= 1
Number of items per page
1 <= x <= 100
Filter profiles by name
Successful Response
Show child attributes
Was this page helpful?