action meraki_get_network_access_policies { label: "List the access policies for this network" description: "List the access policies for this network. Only valid for MS networks." provider: meraki method: GET path: "/networks/{networkId}/accessPolicies" encoding: json input: { type: "object" properties: { networkId: { type: "string" } } required: ["networkId"] additionalProperties: false } output: { type: "array" items: { type: "object" } } }