easyMultiple ChoiceObjective-mapped
200-901 Practice Question: A developer needs to retrieve a list of all…
A developer needs to retrieve a list of all networks in a Meraki organization using the Dashboard API. Which API call should be made?
⚠ Common exam trap
Cisco often tests the distinction between list and single-resource endpoints, so the trap here is confusing GET /organizations/{organizationId}/networks (list all networks) with GET /organizations/{organizationId}/networks/{networkId} (get one network), or assuming a root-level /networks endpoint exists without the required organization scope.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
GET /organizations/{organizationId}/networks
The correct API call to retrieve a list of all networks in a Meraki organization is GET /organizations/{organizationId}/networks. Option A shows this endpoint. Option B uses the wrong HTTP method (POST is for creating). Option C is missing the organization scope, and option D retrieves a single network.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
GET /organizations/{organizationId}/networks
Why this is correct
Correct: This endpoint returns a list of networks in the specified organization.
- ✗
POST /organizations/{organizationId}/networks
Why it's wrong here
Incorrect: The POST method is used to create a network, not retrieve a list.
- ✗
GET /networks
Why it's wrong here
Incorrect: The API requires an organization ID in the path; there is no root-level /networks endpoint.
- ✗
GET /organizations/{organizationId}/networks/{networkId}
Why it's wrong here
Incorrect: This endpoint retrieves a single network, not a list.
Go deeper
Related to this question
About these practice questions
This 200-901 question is part of Courseiva's 989-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This 200-901 practice question is part of Courseiva's free Cisco certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the 200-901 exam.