If you work with REST APIs, you already know that you’ve two HTTP methods for updating resources:
- PUT: updates an entire resource
- PATCH: the update request only needs to contain the changes to the resource, not the complete resource.
The AL language permits you to work with REST services by using the HttpClient class. If you declare an HttpClient object in AL, from Intellisense in…