exam questions

Exam 300-435 All Questions

View all questions & answers for the 300-435 exam

Exam 300-435 topic 1 question 96 discussion

Actual exam question from Cisco's 300-435
Question #: 96
Topic #: 1
[All 300-435 Questions]


Refer to the exhibit. Which two parameters are mandatory when the Cisco Meraki API is used to create a network? (Choose two.)

  • A. timezone
  • B. disableMyMerakiCom
  • C. type
  • D. tags
  • E. organizationId
Show Suggested Answer Hide Answer
Suggested Answer: AE 🗳️
Without organizationID and timezone, you will not be able to create a network. Organizationid is necessary for the connection. Timezone is necessary for the network id.

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
1234567J
Highly Voted 3 years, 11 months ago
{ “name”: “Test Network 2”, “organizationId”: <org_id>, “type”: “appliance”} Answer: CE
upvoted 8 times
...
arpesz
Highly Voted 3 years, 9 months ago
Time-zone is not required and "type" parameter does not exists in API v1.5.0. Although it exists in v1.0. It's a pity the exam question does not mention the API version... What's sure is with v1.5.0 you have to add these parameters in the body if you want to have a 201 Created as an response: { "name": "test2 for exam", "organizationId": "xxxxxxxxxxx", "productTypes": [ "wireless" ] } If you try to use the "type" parameter instead of productTypes, or do like this: { "name": "test for exam", "organizationId": "xxxxxxxxxxx", "timeZone": "yyyyyy" } You will receive a 400 Bad Request as response with this body: { "errors": [ "The following required parameters are missing: 'productTypes'" ] } Tested in Postman v8 with Meraki Dashboard API v1.5.0 So the question is outdated and/or not specific enough, but the closest answers to the right ones are C and E.
upvoted 6 times
...
Cheam
Most Recent 7 months, 3 weeks ago
Selected Answer: CE
Whether you create a new network via an API call or directly on the dashboard itself, you are required to provide an "organisational-id" (for device registration purposes), a "name" to indicate where the registered device belong to (geographically) and the network "type" to identify what type of Meraki device it is, as shown below: Wireless: Wireless access points (MR series) Security appliance: Security appliance (MX series) or teleworker gateway (Z Series); please note only one of these devices can exist per network Gateway: Cellular Gateway (MG series) Switch: Access and aggregation switches (MS series) Camera: Security cameras (MV series) Combined hardware: These networks can contain a mix of any (or all) of the above devices; please note that the limit of one MX or Z-series device still applies. Ref: https://documentation.meraki.com/Getting_Started_with_Meraki/Getting_Started_Resources/Getting_Started_Checklist All the best
upvoted 2 times
...
Slavey
10 months, 3 weeks ago
Answer C, E for me and here is my understanding: POST https://api.meraki.com/api/v1/organizations/<org_id>/networks Request body: { “name”: “Test Network 2”, “organizationId”: <org_id>, “type”: “appliance”} Response code: 201 Response body: { “id”: <network_id>, “name”: “Test Network 2”, “organization_id”: <org_id>, “type”: “appliance”, “tags”: null } https://documentation.meraki.com/General_Administration/Other_Topics/Cisco_Meraki_Dashboard_API
upvoted 1 times
...
Lyndongarcia09
2 years, 11 months ago
it shoud be organizational ID and type. (But it should be orgID / name / type) https://developer.cisco.com/meraki/api-v1/#!create-organization-network
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...