In REST APIs, a _______ request is used for partial updates to a resource.
- GET
- PATCH
- POST
- PUT
In REST APIs, a PATCH request is used for partial updates to a resource. Unlike PUT, which updates the entire resource, PATCH is used to apply partial modifications. This is useful when you want to update only specific fields without affecting the rest of the resource.
Loading...
Related Quiz
- Proper error handling in APIs should always include _________ to guide users or developers in resolving the issue.
- _________ testing in CI/CD ensures that API changes are backward compatible.
- In API testing, _________ testing ensures that the API behaves as expected when it receives invalid, unexpected, or random data.
- In a DevOps environment, what is the significance of Shift-Left testing for APIs?
- _________ is an important aspect of error handling that prevents exposing sensitive data through error messages.