Sign in

Create an address

documented

Creates a new address for a Connect account.

POST /addressesConnectno 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://{{$account_name}}.quadernoapp.com/api/addresses.json" \
  -u "{{QUADERNO_API_KEY}}:x" \
  -H "Content-Type: application/json" \
  -H "Accept: 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}}"}'