Closed
Description
making the call you receive the following exception:
meraki.exceptions.APIError: organizations, createOrganizationActionBatch - 400 Bad Request, {'errors': ['create operation is unsupported for /networks/{network_id}/devices/remove.']}
Current code:
action = {
"resource": resource,
"operation": "create",
"body": payload
}
Changing the operation to 'remove' fixes the issue.
Working code:
action = {
"resource": resource,
"operation": "remove",
"body": payload
}
Metadata
Metadata
Assignees
Labels
No labels