rfctl orgs overview#
Get organization overview with contacts, deals, and recent activities.
Synopsis#
rfctl orgs overview <id>Arguments#
| Argument | Description |
|---|---|
id | The organization ID (required) |
Description#
The overview command returns comprehensive information about an organization, including:
- Organization details
- All contacts
- Open deals
- Recent activities
This is useful for getting a complete picture of an organization in a single request.
Examples#
rfctl orgs overview 1Output#
Returns JSON with the organization overview:
{
"organization": {
"id": 1,
"name": "Acme Corp",
"domain": "acme.com",
"industry": "Technology",
"status": "customer"
},
"contacts": [
{
"id": 1,
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@acme.com",
"is_primary": true
}
],
"deals": [
{
"id": 1,
"name": "Enterprise License",
"amount": 50000,
"stage": "Negotiation"
}
],
"activities": [
{
"id": 1,
"type": "call",
"subject": "Initial discovery call",
"occurred_at": "2024-01-20T14:00:00Z"
}
]
}Errors#
If the organization is not found:
Organization not found: 1