Create proposal
documentedCreate a new proposal for a client.
POST /proposals.jsonProposalsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://bidsketch.com/api/v1/proposals.json" \
-X POST \
-H "Authorization: Token token=\"{{BIDSKETCH_API_KEY}}\"" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"client_id": {{$client_id}}, "title": "{{$title}}", "template_id": {{$template_id}}, "description": "{{$description}}", "due_date": "{{$due_date}}", "currency": "{{$currency}}", "line_items": [{"name": "{{$item_name}}", "amount": {{$amount}}, "quantity": {{$quantity}}, "unit": "{{$unit}}"}]}'