Create A Network

POST {{baseUrl}}/organizations/:organizationId/networks

Create a network #### Body Parameters Parameter|Type|Description :-------------: |:-------------: |:-------------: name| string| The name of the new network productTypes| array| The product type(s) of the new network. Valid types are wireless, appliance, switch, systemsManager, camera, cellularGateway, environmental. If more than one type is included, the network will be a combined network. tags| array| A list of tags to be applied to the network timeZone| string| The timezone of the network. For a list of allowed timezones, please see the 'TZ' column in the table in this article. copyFromNetworkId| string| The ID of the network to copy configuration from. Other provided parameters will override the copied configuration, except type which must match this network's type exactly. notes| string| Add any notes or additional information about this network here.

Supports Action Batches

ResourceOperation
/organizations/{organizationId}/networkscreate

Request Body

{"name"=>"<string>", "productTypes"=>["<string>", "<string>"], "tags"=>["<string>", "<string>"], "timeZone"=>"<string>", "copyFromNetworkId"=>"<string>", "notes"=>"<string>"}

HEADERS

KeyDatatypeRequiredDescription
X-Cisco-Meraki-API-Keynull
Content-Typestring

RESPONSES

status: Created

{&quot;id&quot;:&quot;L_123456&quot;,&quot;organizationId&quot;:&quot;2930418&quot;,&quot;name&quot;:&quot;Long Island Office&quot;,&quot;timeZone&quot;:&quot;America/Los_Angeles&quot;,&quot;tags&quot;:[&quot;tag1&quot;,&quot;tag2&quot;],&quot;productTypes&quot;:[&quot;appliance&quot;,&quot;switch&quot;,&quot;wireless&quot;],&quot;enrollmentString&quot;:&quot;long-island-office&quot;,&quot;notes&quot;:&quot;Combined network for Long Island Office&quot;}