Sign in

Update account address

documented

Update a specific account address identified by addressId.

POST /molpro/account/addresses/{addressId}Accountsno 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://stage-rest.click2mail.com/molpro/account/addresses/{{$addressId}}" \
  -X POST \
  -H "Accept: application/xml" \
  -H "Content-Type: application/xml" \
  -H "Authorization: Basic {{CLICK2MAIL_SECRET}}" \
  -d '<address>\n  <FirstName>{{$firstName}}</FirstName>\n  <LastName>{{$lastName}}</LastName>\n  <Organization>{{$organization}}</Organization>\n  <Address1>{{$address1}}</Address1>\n  <Address2>{{$address2}}</Address2>\n  <City>{{$city}}</City>\n  <State>{{$state}}</State>\n  <PostalCode>{{$postalCode}}</PostalCode>\n  <Country>{{$country}}</Country>\n  <Phone>{{$phone}}</Phone>\n  <Email>{{$email}}</Email>\n</address>'