Get All Quotes
machship_get_quotesRetrieve all quotes for a specific company. Provide the company ID to get a list of quotes with IDs, references, and statuses.
Instructions
Returns all quotes for a given company.
Args:
companyId (number): Company ID
response_format ('json' | 'markdown'): Output format (default: 'json')
Returns: Array of quote summary objects: { "id": number, "reference": string, "status": string, "createdDate": string }
Examples:
Use when: "List all quotes for company 123"
Use when: You need a quote ID to pass to machship_get_quote for full details
Don't use when: You want to create a new quote (use machship_create_quote instead)
Error Handling:
Error 404: companyId does not exist or is not accessible
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| companyId | Yes | Company ID | |
| response_format | No | Output format: 'json' (default) or 'markdown' | json |