You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.']}
@rwilliams01123 thank you for reporting this. Thanks to your report I identified a number of other issues and you will see these fixed shortly. You will need to upgrade to 1.42.0 to resolve this issue.
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
}
The text was updated successfully, but these errors were encountered: