Hello,
I'm updating a JSON item in a Container using*container.PatchItemAsync* but I'm receiving 404 error - Resource Not Found.
And Partition Key is /id and below is the sample code
List<PatchOperation> patchOperations = new List<PatchOperation>();
patchOperations.Add(PatchOperation.Set("/latest", 100));
ItemResponse<dynamic> item = await container.PatchItemAsync<dynamic>(
"30abb6e0-1e8c-xxxx-xxxx-xxxxxxxxxxxx",
new PartitionKey("id"),
patchOperations
);