An emergency-management office automation job must read intent objects from Catalyst Center without changing them, then later create an update when operators approve. Which HTTP verb pairing is appropriate?
Select an answer to reveal the explanation.
Short Explanation
GET is looking through the glass; POST/PUT is filling out the change form after the EM director signs. DELETE-as-read or TRACE-as-write is how you break the glass and the process.
Full Explanation
RESTful controller APIs use GET for safe retrieval of intent/inventory resources and POST/PUT/PATCH for create/update according to each resource’s contract. Emergency-management automation should read first, change only with approved write verbs, and never misuse DELETE, TRACE, or CONNECT as substitutes. Correct HTTP verb selection is a Domain 5 API literacy requirement.