Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.alterauth.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Use Cloudflare credentials to make authenticated API calls through Alter Vault without exposing your API keys in code.
PropertyValue
Provider IDcloudflare
CategoryDeveloper Tools
Credential TypeBearer Token

Step 1: Get Your Credentials

1

Log in to the Cloudflare Dashboard

Log in to the Cloudflare Dashboard at dash.cloudflare.com.
2

Go to My Profile → API Tokens

Go to My Profile → API Tokens at dash.cloudflare.com/profile/api-tokens.
3

Create a token

Click ‘Create Token’ and select a template or create custom.
4

Configure permissions

Configure permissions and click ‘Create Token’.
5

Copy the generated API token

Copy the generated API token (it won’t be shown again).
Never share your credentials publicly. Store them securely and only enter them in the Alter Vault Developer Portal.

Step 2: Add to Alter Vault

1

Open the Developer Portal

Go to portal.alterauth.com and navigate to your app.
2

Add Cloudflare

Go to Managed Secrets > Add Provider > Cloudflare.
3

Enter your credentials

Paste your API Token into the credential field.
4

Save

Click Save. You’ll receive a grant_id to use with the SDK.

Using in Code

response = await vault.request(
    HttpMethod.GET,
    "https://api.cloudflare.com/client/v4/zones",
    grant_id="YOUR_GRANT_ID",
)