In a DELETE request, what would omitting the value of _key from the REST endpoint do?
In a DELETE request, what would omitting the value of _key from the REST endpoint do?
In a DELETE request, omitting the value of _key from the REST endpoint would produce a syntax error because the endpoint requires a specific key value to identify the resource to delete. Without this key value, the server would be unable to determine which record to delete, resulting in an error message indicating that the key value is missing.
C is correct
This is the way
Could someone help me confirm if this is correct