Sign in

Update contact

documented

Update an existing Contact.

PATCH /api/data/v9.2/contacts({id})Dataverseno 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://{{$organization_domain}}.crm.dynamics.com/api/data/v9.2/contacts({{$contact_id}})" \
  -X PATCH \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "OData-MaxVersion: 4.0" \
  -H "OData-Version: 4.0" \
  -H "If-Match: *" \
  -d '{"firstname": "{{$firstname}}", "lastname": "{{$lastname}}", "emailaddress1": "{{$emailaddress1}}"}'
Update contact · Microsoft Dynamics 365 · OpenIntegrations