Sign in

Create API key

documented

Create a new API key.

POST /v1/keysKeysno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.mailgun.net/v1/keys" \
  -X POST \
  -u "api:{{MAILGUN_API_KEY}}" \
  -H "Accept: application/json" \
  -F "domain_name={{$domain_name}}" \
  -F "kind={{$kind}}" \
  -F "description={{$description}}" \
  -F "expiration={{$expiration}}" \
  -F "role={{$role}}" \
  -F "user_id={{$user_id}}" \
  -F "user_name={{$user_name}}" \
  -F "email={{$email}}"
Create API key · mailgun · OpenIntegrations