Skip to content

Instantly share code, notes, and snippets.

@expiscornovus
Last active March 14, 2021 14:12
Show Gist options
  • Save expiscornovus/d2ffc3bc98c20b00c1ef1cf585f3fee1 to your computer and use it in GitHub Desktop.
Save expiscornovus/d2ffc3bc98c20b00c1ef1cf585f3fee1 to your computer and use it in GitHub Desktop.
Update description phone call record via Microsoft Dataverse Web API patch request
Method - PATCH
URI - @{variables('EnvironmentUrl')}/api/data/v9.1/@{variables('Entity')}(@{variables('RecordId')})
Headers -
{
"Content-Type": "application/json",
"OData-MaxVersion": "4.0",
"OData-Version": "4.0"
}
Body -
{
"description": "My test description"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment