Hello Team,
 
I am using API to get some details about my env.
I got orgid and networks successfully:
 
[
    {
        "id": "N_595038100766352700",
        "organizationId": "620490",
        "name": "Wireless",
        "timeZone": "America/Los_Angeles",
        "tags": null,
        "type": "wireless",
        "disableMyMerakiCom": false,
        "disableRemoteStatusPage": true
    },
    {
        "id": "N_595038100766352701",
        "organizationId": "620490",
        "name": "Phones",
        "timeZone": "America/Los_Angeles",
        "tags": null,
        "type": "phone",
        "disableRemoteStatusPage": true
    },
    {
        "id": "N_595038100766352702",
        "organizationId": "620490",
        "name": "Systems Manager",
        "timeZone": "America/Los_Angeles",
        "tags": null,
        "type": "systems manager",
        "disableRemoteStatusPage": true
    }
] 
Now i wanted to display all the phones registered in my Systems Manager so tried:
/networks/N_595038100766352702/devices but getting empty 200 response. 
 
While i do see a registered phone:

 
Why ? Please keep in mind i do not have wired/wireless, just SM with phone provisioned. That is a test lab.
 
How to get my phones and details about those via API ?
 
Thanks !