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
Please allow Python SDK to have body the delete extension API endpoint
Current behavior : this is not working, throws a 400 error, because usually delete does not have a body, but in this case it;s required cos that's how it is in the documentation
Please allow Python SDK to have body the delete extension API endpoint
Current behavior : this is not working, throws a 400 error, because usually delete does not have a body, but in this case it;s required cos that's how it is in the documentation
try:
endpoint = "/restapi/v2/accounts/~/extensions"
body = {
"keepAssetsInInventory": True,
"records": [{"id": "63581676004"}]
}
res = platform.delete(endpoint, body)
The text was updated successfully, but these errors were encountered: