For DEVCOR’s official FDM object task, which pair of HTTP verbs matches create and delete of network objects?
Select an answer to reveal the explanation.
Short Explanation
Create is POST; delete is DELETE—simple as a stamp and a shredder. PUT modifies an existing object and is supporting context, not the numbered create/delete pair.
Full Explanation
Official task 3.2 verbs are create (POST /object/networks) and delete (DELETE /object/networks/{objId}). PUT with a full JSON body is how FDM modifies an existing object and must not be treated as the official create/delete pair. GET and HEAD do not create or delete network objects in this construction.