PluginsLinear
Get Credentials
Step-by-step instructions for obtaining Linear credentials
This guide walks you through obtaining all required credentials for the Linear plugin.
Authentication Method
The Linear plugin uses API key authentication.
api_key(default) - Personal API key authentication
API Key Setup
Step 1: Generate API Key
- Go to Linear Settings → API
- Navigate to the API section
- Under Personal API keys, click Create API key
- Give your key a name (e.g., "Corsair Integration")
- Copy the API key immediately
- Important: Store the key securely - you won't be able to see it again
Storing Credentials:
Store the API key with the Corsair CLI:
pnpm corsair setup --linear api_key=your-api-keyVerify it was saved:
pnpm corsair auth --plugin=linear --credentialsWebhook Secret
Step 1: Create Webhook
- Go to Linear Settings → API
- Navigate to Webhooks section
- Click Create Webhook
- Configure:
- Label: Your webhook name
- URL: Your webhook endpoint (e.g.,
https://yourapp.com/api/webhook) - Resource types: Select:
- Issues
- Comments
- Projects
- Click Create Webhook
- After creation, copy the Signing Secret shown
- Store it securely
Storing Credentials:
Store the webhook secret with the CLI:
pnpm corsair setup --linear webhook_signature=your-webhook-secretRequired Credentials Summary
| Credential | Required For | Where to Find |
|---|---|---|
| API Key | API Key auth | Settings → API → Personal API keys |
| Webhook Secret | Webhooks | Settings → API → Webhooks → Signing Secret |
For general information about how Corsair handles authentication, see Authentication.