Use the Qualifying CLI from KosmoKrator to call Qualifying tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.
Qualifying can be configured headlessly with `kosmokrator integrations:configure qualifying`.
# Install KosmoKrator first if it is not available on PATH.curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash# Configure and verify this integration.kosmokrator integrations:configure qualifying --set access_token="$QUALIFYING_ACCESS_TOKEN" --enable --read allow --write ask --jsonkosmokrator integrations:doctor qualifying --jsonkosmokrator integrations:status --json
Credentials
Authentication type: Bearer tokenbearer_token. Configure credentials once, then use the same stored profile from
scripts, coding CLIs, Lua code mode, and the MCP gateway.
Key
Env var
Type
Required
Label
access_token
QUALIFYING_ACCESS_TOKEN
Secret secret
yes
Access Token
url
QUALIFYING_URL
URL url
no
API URL
Call Qualifying Headlessly
Use the generic call form when another coding CLI or script needs a stable universal interface.
Every function below can be called headlessly. The generic form is stable across all integrations;
the provider shortcut is shorter but specific to Qualifying.
qualifying.qualifying_list_accounts
Read read
List sales accounts from Qualifying. Returns a paginated list of accounts with their details. Use limit and page parameters to navigate through results.
Get detailed information about a specific sales account in Qualifying. Returns the account's full profile including name, industry, website, and associated metadata.
Get detailed information about a specific contact in Qualifying. Returns the contact's full profile including name, email, phone, associated account, and other metadata.
List deals from Qualifying. Returns a paginated list of deals with their details. Optionally filter by stage to see deals in a specific pipeline stage (e.g., "lead", "qualified", "won", "lost").
Get the profile of the currently authenticated Qualifying user. Returns user details such as name, email, and role. Useful for verifying the connection and understanding whose credentials are being used.
Use these parameter tables when building CLI payloads without calling integrations:schema first.
qualifying.qualifying_list_accounts
List sales accounts from Qualifying. Returns a paginated list of accounts with their details. Use limit and page parameters to navigate through results.
Maximum number of accounts to return per page (default: 25, max: 100).
page
integer
no
Page number for pagination (default: 1).
qualifying.qualifying_get_account
Get detailed information about a specific sales account in Qualifying. Returns the account's full profile including name, industry, website, and associated metadata.
Maximum number of contacts to return per page (default: 25, max: 100).
page
integer
no
Page number for pagination (default: 1).
account_id
string
no
Filter contacts by account ID to return only contacts associated with a specific account.
qualifying.qualifying_get_contact
Get detailed information about a specific contact in Qualifying. Returns the contact's full profile including name, email, phone, associated account, and other metadata.
List deals from Qualifying. Returns a paginated list of deals with their details. Optionally filter by stage to see deals in a specific pipeline stage (e.g., "lead", "qualified", "won", "lost").
Get the profile of the currently authenticated Qualifying user. Returns user details such as name, email, and role. Useful for verifying the connection and understanding whose credentials are being used.
Headless calls still follow the integration read/write permission policy. Configure read/write defaults
with integrations:configure. Add --force only for trusted automation that should bypass that policy.