Update an address
documentedUpdates a Connect account address.
PUT /addresses/{id}Connectno 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://{{$account_name}}.quadernoapp.com/api/addresses/{{$address_id}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"street_line_1": "{{$street_line_1}}", "street_line_2": "{{$street_line_2}}", "city": "{{$city}}", "region": "{{$region}}", "postal_code": "{{$postal_code}}", "country": "{{$country}}", "valid_from": "{{$valid_from}}", "valid_until": "{{$valid_until}}" }'