fix(docs): correct platform and canvas domains in org-scoped API keys blog post

platform.moleculeai.ai -> platform.moleculesai.app
canvas.moleculeai.ai -> canvas.moleculesai.app

Spotted during docs PR review cycle.
This commit is contained in:
molecule-ai[bot] 2026-04-21 11:42:15 +00:00 committed by GitHub
parent eaadf72e2d
commit e26e542888
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@ Org-scoped keys give each integration its own credential with its own identity.
### Mint a key via API
```bash
curl -X POST https://platform.moleculeai.ai/org/tokens \
curl -X POST https://platform.moleculesai.app/org/tokens \
-H "Authorization: Bearer <your-session-token>" \
-H "Content-Type: application/json" \
-d '{
@ -70,7 +70,7 @@ The response contains the plaintext token — shown exactly once. Store it immed
### List active keys
```bash
curl https://platform.moleculeai.ai/org/tokens \
curl https://platform.moleculesai.app/org/tokens \
-H "Authorization: Bearer <your-session-token>"
```
@ -79,7 +79,7 @@ Returns key IDs, names, prefixes, and creation timestamps — no plaintext.
### Revoke a key immediately
```bash
curl -X DELETE https://platform.moleculeai.ai/org/tokens/tok_01HXYZ... \
curl -X DELETE https://platform.moleculesai.app/org/tokens/tok_01HXYZ... \
-H "Authorization: Bearer <your-session-token>"
```
@ -130,7 +130,7 @@ Navigate to **Settings → Org API Keys** in the Canvas to mint your first key,
Revoke and rotate at any time from the same screen.
→ [Canvas → Settings → Org API Keys](https://canvas.moleculeai.ai)
→ [Canvas → Settings → Org API Keys](https://canvas.moleculesai.app)
→ [Platform API Reference](/docs/api-protocol/platform-api)
---