Update contact
documentedUpdate an existing contact.
PUT /Contact/{id}Contactsno 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.saasu.com/Contact/{{$id}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{ \"Id\": {{$id}}, \"Salutation\": \"{{$salutation}}\", \"GivenName\": \"{{$firstName}}\", \"MiddleInitials\": \"{{$middleInitials}}\", \"FamilyName\": \"{{$lastName}}\", \"EmailAddress\": \"{{$emailAddress}}\", \"WebsiteUrl\": \"{{$websiteUrl}}\", \"PrimaryPhone\": \"{{$primaryPhone}}\", \"HomePhone\": \"{{$homePhone}}\", \"MobilePhone\": \"{{$mobilePhone}}\", \"Fax\": \"{{$fax}}\", \"AdditionalEmails\": \"{{$additionalEmails}}\", \"IsActive\": {{$isActive}}, \"CompanyId\": {{$companyId}}, \"ContactManagerId\": {{$contactManagerId}}, \"PositionTitle\": \"{{$positionTitle}}\", \"TwitterId\": \"{{$twitterId}}\", \"SkypeId\": \"{{$skypeId}}\", \"OcrRecipientAlias\": \"{{$ocrRecipientAlias}}\"}'"