What is this?
The Developer Portal is a dedicated area for building on the platform’s API. It lists every endpoint with its parameters, examples, and responses, lets you send a real test request right from the page, and is where you create and manage your API key. The portal is generated from the live API, so it always matches what the platform actually supports. For a guide-style walkthrough of authentication, rate limits, and errors, see the API tab. [SCREENSHOT: developer-portal-reference — The Developer Portal API Reference tab with the endpoint list, search box, and an endpoint’s details]You need the API Access permission to open the Developer Portal and to send test requests. Without it you’ll see “You do not have access to the Developer Portal.” Ask an admin to grant it. See Team.
What can I do here?
- Search and browse every API endpoint
- See each endpoint’s required permission, rate limit, parameters, example code, example response, and status codes
- Try it — send a real request and see the live response
- Generate, regenerate, or revoke your API key
- Download the OpenAPI definition and a Postman collection
How to use it
Open the portal
Click your profile picture in the top-right corner and choose Developer. The portal has three tabs: API Reference, API Keys, and OpenAPI / Postman.Browse the API reference
- On API Reference, choose Workspace API. Platform administrators also see Platform API.
- Type in Search APIs… to find an endpoint, or pick one from the list.
-
Read the details:
Try a request
- Select an endpoint and click Try it.
- Choose the method (GET or POST, where both are offered) and fill in the parameters. Endpoints with no parameters say “No parameters - send directly.”
- Click Send Request.
- Read the Response and Response headers. Use Copy JSON or Copy raw to copy the result.
Manage your API key
- Open the API Keys tab.
- Click Generate API Key (or Regenerate API Key if you already have one).
- Copy the key immediately. It’s shown only once: “Save your API key now! This is the only time it is shown.”
- Click Revoke to disable the key.
Download OpenAPI and Postman files
Open OpenAPI / Postman and download:- OpenAPI JSON or OpenAPI YAML — the machine-readable API definition
- Postman collection
- In Postman, choose Import and select the downloaded file.
- In the collection’s Variables tab, set
base_urlto your platform’s address andapi_keyto your key. - Send a request. The key is sent in the
X-API-Keyheader on every call.
{{api_key}} variable.
Troubleshooting / Technical Notes
- I don’t see “Developer” in the profile menu. You need the API Access permission. Ask an admin.
- Try it is disabled. Try it needs the API Access permission. You can still read the documentation.
- “This entry is documentation-only.” That endpoint can’t be run from the portal. Use the code example instead.
- A request returns 401 or 403. The request runs with your own permissions. Check you have the permission shown under Authentication.
- My key stopped working. It may have been revoked or regenerated. Generate a new one and update your apps.
- I can’t see the Platform API. It’s only shown to platform administrators.