Creating a network object through the city's FDM API returns HTTP 400 (or 422) because the payload is malformed. What is the correct consumer control flow?
Select an answer to reveal the explanation.
Short Explanation
If the form is filled out wrong, mailing it again unchanged will bounce the same way. Stop, show the validation error, fix the payload—do not pretend it is a timeout.
Full Explanation
HTTP 400/422 validation failures are unrecoverable by waiting: identical retries fail the same way. Control flow under 2.2 is stop-and-fix the body, not backoff as if it were a 2.1 timeout or rate limit. Changing the verb to GET only hides the defect.