Sign in

Update contract

documented

Update a contract.

PUT /contracts/{id}.jsonContractsno implementation yet0 runs
No 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.samanage.com/contracts/{{$contract_id}}.json" \
  -X PUT \
  -H "Accept: application/vnd.samanage.v2.1+json" \
  -H "Content-Type: application/json" \
  -H "X-Samanage-Authorization: Bearer {{SAMANAGE_API_KEY}}" \
  -d '{"title": "{{$title}}", "description": "{{$description}}", "start_date": "{{$start_date}}", "end_date": "{{$end_date}}", "vendor_id": {{$vendor_id}}, "contract_value": {{$contract_value}}, "currency": "{{$currency}}", "status": "{{$status}}"}'
Update contract · samanage · OpenIntegrations