Create deal
documentedCreate a new deal.
POST /dealsDealsno 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://api.lime-go.com/v1/deals" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"title": "{{$title}}", "description": "{{$description}}", "amount": {{$amount}}, "currency": "{{$currency}}", "organization_id": "{{$organization_id}}", "person_id": "{{$person_id}}", "stage": "{{$stage}}", "close_date": "{{$close_date}}", "notes": "{{$notes}}"}'