Which server return code indicates that the server accepted your request, but it must perform other actions in order to complete the request?
- 200 OK
- 202 Accepted
- 201 Created
- 206 Partial Content
Explanation: The HTTP status code 202 (Accepted) indicates that the server accepted your request, but it must perform other actions in order to complete the request. For instance, if the Cisco Catalyst Center platform needs to interact with various network devices to fulfill a specific command, it will return this code.
In contrast, other codes serve different purposes:
- 200 (OK): Means the request succeeded and the response already includes the result of the action.
- 4xx codes: Indicate that the request failed due to a client-side error, such as a 401 (Unauthorized) code.
- 5xx codes: Indicate that the failure was due to a server-side error, such as a 503 (Service Unavailable) code.
Related exam: Modules 23 – 26: Checkpoint Exam: Software-Defined Networking Answers (CCNP ENCOR v9)
