Update Contact
documentedUpdate an existing contact.
PUT /v2.0/contacts/{id}Contacts APIno 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.esendex.com/v2.0/contacts/{{$id}}" \
-X PUT \
-H "Authorization: Basic {{ESENDEX_SECRET}}" \
-H "Content-Type: application/xml" \
-H "Accept: application/xml" \
-d '<?xml version="1.0" encoding="UTF-8"?>\n<contact xmlns="http://api.esendex.com/ns/">\n <firstname>{{$firstname}}</firstname>\n <lastname>{{$lastname}}</lastname>\n <quickname>{{$quickname}}</quickname>\n <phonenumber>{{$phonenumber}}</phonenumber>\n</contact>'