rfctl deals list#

List all deals with optional search.

Synopsis#

rfctl deals list [flags]

Flags#

FlagTypeDescription
--searchstringSearch by deal name

Examples#

# List all deals
rfctl deals list

# Search deals
rfctl deals list --search "Enterprise"

Output#

Returns JSON array of deals:

[
  {
    "id": 1,
    "name": "Enterprise License",
    "amount": 50000,
    "currency": "USD",
    "probability": 75,
    "stage_id": 2,
    "owner_id": 1,
    "organization_id": 1,
    "expected_close_date": "2024-03-15"
  }
]