action meraki_get_network_wireless_rf_profile { label: "Return a RF profile" description: "Return a RF profile" provider: meraki method: GET path: "/networks/{networkId}/wireless/rfProfiles/{rfProfileId}" encoding: json input: { type: "object" properties: { networkId: { type: "string" } rfProfileId: { type: "string" } } required: ["networkId", "rfProfileId"] additionalProperties: false } output: { type: "object" } }