Update account
documentedUpdate an existing Account.
PATCH /api/data/v9.2/accounts({id})Dataverseno 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://{{$organization_domain}}/api/data/v9.2/accounts({{$id}})" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json; charset=utf-8" \
-H "Accept: application/json" \
-H "OData-MaxVersion: 4.0" \
-H "OData-Version: 4.0" \
-H "If-Match: *" \
-d '{"name": "{{$name}}", "description": "{{$description}}", "address1_city": "{{$city}}", "address1_stateorprovince": "{{$state}}", "address1_postalcode": "{{$postalcode}}", "address1_latitude": {{$latitude}}, "address1_longitude": {{$longitude}}, "revenue": {{$revenue}}, "telephone1": "{{$phone}}"}'