A network engineer is using the Cisco Meraki API to retrieve a list of SSIDs for a specific network. The API returns an HTTP 200 status but an empty array for the SSIDs. Which of the following is the most likely cause?
Trap 1: The network ID is incorrect.
Wrong network ID returns 404, not empty array.
Trap 2: The API key is invalid.
Invalid API key results in 401/403, not empty array.
Trap 3: The request body is malformed.
Malformed request returns 400, not empty array.
- A
The network exists but has no SSIDs configured.
Empty array indicates no SSIDs, which is valid.
- B
The network ID is incorrect.
Why wrong: Wrong network ID returns 404, not empty array.
- C
The API key is invalid.
Why wrong: Invalid API key results in 401/403, not empty array.
- D
The request body is malformed.
Why wrong: Malformed request returns 400, not empty array.