KosmoKrator

sales

Qualifying CLI for AI Agents

Use the Qualifying CLI from KosmoKrator to call Qualifying tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

6 functions 6 read 0 write Bearer token auth

Qualifying CLI Setup

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 --json
kosmokrator integrations:doctor qualifying --json
kosmokrator integrations:status --json

Credentials

Authentication type: Bearer token bearer_token. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
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.

kosmo integrations:call qualifying.qualifying_list_accounts '{
  "limit": 1,
  "page": 1
}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:qualifying qualifying_list_accounts '{
  "limit": 1,
  "page": 1
}' --json

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

kosmo integrations:docs qualifying --json
kosmo integrations:docs qualifying.qualifying_list_accounts --json
kosmo integrations:schema qualifying.qualifying_list_accounts --json
kosmo integrations:search "Qualifying" --json
kosmo integrations:list --json

All CLI Functions

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.

Parameters
limit, page

Generic CLI call

kosmo integrations:call qualifying.qualifying_list_accounts '{"limit":1,"page":1}' --json

Provider shortcut

kosmo integrations:qualifying qualifying_list_accounts '{"limit":1,"page":1}' --json

qualifying.qualifying_get_account

Read read

Get detailed information about a specific sales account in Qualifying. Returns the account's full profile including name, industry, website, and associated metadata.

Parameters
id

Generic CLI call

kosmo integrations:call qualifying.qualifying_get_account '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:qualifying qualifying_get_account '{"id":"example_id"}' --json

qualifying.qualifying_list_contacts

Read read

List contacts from Qualifying. Returns a paginated list of contacts. Optionally filter by account to see contacts belonging to a specific account.

Parameters
limit, page, account_id

Generic CLI call

kosmo integrations:call qualifying.qualifying_list_contacts '{"limit":1,"page":1,"account_id":"example_account_id"}' --json

Provider shortcut

kosmo integrations:qualifying qualifying_list_contacts '{"limit":1,"page":1,"account_id":"example_account_id"}' --json

qualifying.qualifying_get_contact

Read read

Get detailed information about a specific contact in Qualifying. Returns the contact's full profile including name, email, phone, associated account, and other metadata.

Parameters
id

Generic CLI call

kosmo integrations:call qualifying.qualifying_get_contact '{"id":"example_id"}' --json

Provider shortcut

kosmo integrations:qualifying qualifying_get_contact '{"id":"example_id"}' --json

qualifying.qualifying_list_deals

Read read

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").

Parameters
limit, page, stage

Generic CLI call

kosmo integrations:call qualifying.qualifying_list_deals '{"limit":1,"page":1,"stage":"example_stage"}' --json

Provider shortcut

kosmo integrations:qualifying qualifying_list_deals '{"limit":1,"page":1,"stage":"example_stage"}' --json

qualifying.qualifying_get_current_user

Read read

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.

Parameters
none

Generic CLI call

kosmo integrations:call qualifying.qualifying_get_current_user '{}' --json

Provider shortcut

kosmo integrations:qualifying qualifying_get_current_user '{}' --json

Function Schemas

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.

Operation
Read read
Schema command
kosmo integrations:schema qualifying.qualifying_list_accounts --json
ParameterTypeRequiredDescription
limit integer no 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.

Operation
Read read
Schema command
kosmo integrations:schema qualifying.qualifying_get_account --json
ParameterTypeRequiredDescription
id string yes The unique identifier of the account.

qualifying.qualifying_list_contacts

List contacts from Qualifying. Returns a paginated list of contacts. Optionally filter by account to see contacts belonging to a specific account.

Operation
Read read
Schema command
kosmo integrations:schema qualifying.qualifying_list_contacts --json
ParameterTypeRequiredDescription
limit integer no 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.

Operation
Read read
Schema command
kosmo integrations:schema qualifying.qualifying_get_contact --json
ParameterTypeRequiredDescription
id string yes The unique identifier of the contact.

qualifying.qualifying_list_deals

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").

Operation
Read read
Schema command
kosmo integrations:schema qualifying.qualifying_list_deals --json
ParameterTypeRequiredDescription
limit integer no Maximum number of deals to return per page (default: 25, max: 100).
page integer no Page number for pagination (default: 1).
stage string no Filter deals by pipeline stage (e.g., "lead", "qualified", "proposal", "won", "lost").

qualifying.qualifying_get_current_user

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.

Operation
Read read
Schema command
kosmo integrations:schema qualifying.qualifying_get_current_user --json
ParameterTypeRequiredDescription
No parameters.

Permissions

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.