Sign in

Update contact

documented

Updates an existing contact.

PUT /contacts/{contactId}Contactsno 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)

Note: Solve360's API uses HTTP Basic authentication (email as username and API Token as password) and expects XML payloads for write operations. The base URL is https://secure.solve360.com. See Solve360 API Introduction for details. ([solve360.com](https://solve360.com/api/introduction/))

npx -y keychains@latest curl "https://secure.solve360.com/contacts/{{$contactId}}" \
  -X PUT \
  -u "{{$email}}:{{SOLVE360_API_TOKEN}}" \
  -H "Accept: application/xml" \
  -H "Content-Type: application/xml" \
  -d '<contact><FirstName>{{$firstName}}</FirstName><LastName>{{$lastName}}</LastName><Email>{{$email}}</Email><Phone>{{$phone}}</Phone><Company>{{$company}}</Company><JobTitle>{{$title}}</JobTitle><Notes>{{$notes}}</Notes></contact>'