Natively (if I'm not mistaken) you won't be able to do it this way. Today, to extract the information the way I need it, I am using the following code.
import requests
import json
# Make the API request
response = requests.get('https://api.meraki.com/api/v1/organizations/{organizationId}')
# Convert the response to JSON
data = response.json()
# Extract the field you need
org_name = data['name']
I hope it helps.
I am not a Cisco Meraki employee. My suggestions are based on documentation of Meraki best practices and day-to-day experience.
Please, if this post was useful, leave your kudos and mark it as solved.