Dashboard and Collections
After signing in to the Developer Portal, you land on the consumer dashboard. This page shows all API collections assigned to your client and gives you quick access to auth headers and API exploration.
Consumer dashboard
The dashboard shows:
- All API collections the client is assigned to
- Collection name, description, and number of published endpoints
- Quick-access links to browse endpoints and download OpenAPI specs
If a collection is not visible, your admin needs to assign it to the client and publish it.
Opening a collection
Click on any collection to open the collection detail page. From here you can:
- Browse all published endpoints
- View the collection base path
- Access the Auth Headers panel
- Download the OpenAPI specification
Auth Headers panel
The collection detail page includes an Auth Headers panel showing the three headers required for every gateway request:
| Header | Value | Action |
|---|---|---|
X-Client-ID | Your client's ID | Individual copy button |
X-Profile-ID | The currently selected profile's ID | Individual copy button |
Authorization | Bearer <token> for the selected profile | Individual copy button |
The values update automatically when you switch profiles using the profile selector.
Using the auth headers:
- Click the copy button next to any header.
- Paste into your API client, curl command, or code.
- Switch profiles to get the headers for a different access level.
Downloading the OpenAPI spec
Every collection has a downloadable OpenAPI specification generated from its proxy definitions. Two formats are available:
| Format | Schema keyword support | Best for |
|---|---|---|
| OpenAPI 3.0 | JSON Schema draft-07 subset | Most compatible — works with Postman, Swagger UI, most code generators |
| OpenAPI 3.1 | Full JSON Schema 2020-12 | Maximum schema expressiveness (unevaluatedProperties, $defs, etc.) |
Click Download OpenAPI and select your preferred version.
Related docs
- Profile Switching — change active profile and update auth headers
- Explore Endpoints — browse endpoint details
- Testing Console — run live requests in the browser