Documentation Index
Fetch the complete documentation index at: https://docs.kavachos.com/llms.txt
Use this file to discover all available pages before exploring further.
Setup
Get credentials
Go to developer.salesforce.com and set up a Connected App in Setup > App Manager. Under OAuth Settings, enable OAuth and add your redirect URI:Scopes
Default scopes:openid, id, email
| Scope | What it unlocks |
|---|---|
openid | OIDC identity token |
id | Identity URL and user info |
email | Email address |
profile | Display name and photo |
api | Access Salesforce APIs |
Salesforce uses org-specific domains (e.g.
mycompany.my.salesforce.com). The default authorization endpoint is login.salesforce.com but this can be customized for sandbox orgs using test.salesforce.com.Endpoints
| Method | Path | Description |
|---|---|---|
| GET | /auth/oauth/authorize/salesforce | Redirect to Salesforce |
| GET | /auth/oauth/callback/salesforce | Handle callback |