I have a single network, and I want to get client usage history for each client in that network. I first get all clients, and then usage history with endpoint getNetworkClientsUsageHistories.
It works for single clients in both plain request (Postman) and Python SDK for Meraki Dashboard. However, it does not work for multiple clients and I get:
{
"errors": [
"Invalid client key"
]
}
I tried `clientId1,clientId2` (e.g. `k000056,k00d6bd`), and `mac1,mac2`, both do not work and give the same result. Client keys work separately (both client ID and MAC), so this error makes no sense for me.
What am I doing wrong?