Sign in

Create contact

documented

Create a new Contact record.

POST /api/data/v9.2/contactsDataverseno 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}}/api/data/v9.2/contacts" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json; charset=utf-8" \
  -H "OData-MaxVersion: 4.0" \
  -H "OData-Version: 4.0" \
  -H "If-None-Match: null" \
  -d '{"firstname": "{{$firstname}}", "lastname": "{{$lastname}}", "emailaddress1": "{{$emailaddress1}}", "telephone1": "{{$telephone1}}", "mobilephone": "{{$mobilephone}}", "address1_line1": "{{$address1_line1}}", "address1_city": "{{$address1_city}}", "address1_stateorprovince": "{{$address1_state}}", "address1_postalcode": "{{$address1_postalcode}}", "address1_country": "{{$address1_country}}"}'
Create contact · Microsoft Dynamics 365 · OpenIntegrations