$apiCallParams =
@{
URI = "$($dataverseEnvUrl)/api/data/v9.2/parties(a59ca5ea-8f3a-ee11-a81c-0022489a9f93)"
Headers = @{
"Authorization" = "$($authResponse.token_type) $($authResponse.access_token)"
"Content-Type" = "application/json"
"OData-MaxVersion"="4.0"
"OData-Version"="4.0"
"If-Match"='*'
}
Method = 'PATCH'
}
$body =
@{
'new_number'=11
}
# Call the Dataverse WebAPI
$apiCallRequest = Invoke-RestMethod @apiCallParams -Body $body -ErrorAction Stop
$apiCallResponse = $apiCallRequest
Running this script to update a record in Dataverse.
But getting Error identified in Payload error

new_number is just a text field.
Do you see any error here?
Thanks