Update external ID
documentedPatch (update) the external ID of a contract.
PATCH /rest/v2/contracts/{contract_id}Contractsno 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.letsdeel.com/rest/v2/contracts/{{$contract_id}}/amendments" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-d '{"data": {"scope_of_work": "{{$scope_of_work}}", "start_date": "{{$start_date}}", "termination_notice_days": {{$termination_notice_days}}, "title": "{{$title}}", "job_title": "{{$job_title}}", "currency_code": "{{$currency_code}}", "rate": {{$rate}} }}'