volperj's Posts

Hi Rudy,  I think you need to use the MDM v2 API, for both search and update profile assignment. Documentation for MDM v2 API is available on https://*****.awmdm.com/API/help/#!/apis/10003?/Profile... See more...
Hi Rudy,  I think you need to use the MDM v2 API, for both search and update profile assignment. Documentation for MDM v2 API is available on https://*****.awmdm.com/API/help/#!/apis/10003?/ProfilesV2   Hope this help Regards Jérôme
Hi, Linux enrollment/management is currently only available on SaaS environments according to this article under « Workspace ONE UEM Requirements » https://docs.vmware.com/en/VMware-Workspace-ONE... See more...
Hi, Linux enrollment/management is currently only available on SaaS environments according to this article under « Workspace ONE UEM Requirements » https://docs.vmware.com/en/VMware-Workspace-ONE-UEM/services/Linux_Device_Management/GUID-622A0E54-4031-44DC-A7C2-8540A01E1D0B.html
Maybe too late, but you can now also easily use oAuth for the API and choose which role you want to affect. No password expiration and nothing related to the AD or any others informations of the ent... See more...
Maybe too late, but you can now also easily use oAuth for the API and choose which role you want to affect. No password expiration and nothing related to the AD or any others informations of the enterprise. Hope this help
Hi, For Workspace ONE the Swagger definitions already exist but VMware has not referenced them in Official Developer documentation. You can find some definitions URL below : Workspace ONE... See more...
Hi, For Workspace ONE the Swagger definitions already exist but VMware has not referenced them in Official Developer documentation. You can find some definitions URL below : Workspace ONE - MDM v1 => https://YOUR_API_SERVER/api/system/help/mdmv1 Workspace ONE - MDM v2 => https://YOUR_API_SERVER/api/system/help/mdmv2 Workspace ONE - MDM v3 => https://YOUR_API_SERVER/api/system/help/mdmv3 Workspace ONE - MAM v1 => https://YOUR_API_SERVER/api/system/help/mamv1 I think you can easily understand the logic of the URL Hope this help
Hi Robert, Same issue for us, I have open a case to the support. We are also in Shared SaaS 19.9.0.4 Problem with different devices (iOS 13.2.2) If you have a workaround, that's with plea... See more...
Hi Robert, Same issue for us, I have open a case to the support. We are also in Shared SaaS 19.9.0.4 Problem with different devices (iOS 13.2.2) If you have a workaround, that's with pleasure
It's a POST request not GET, but you can specify your parameters directly in the URL (as a GET parameters). Example of CURL request : curl --request POST  --url 'https://YOUR_SERVER/api/v1/mdm/de... See more...
It's a POST request not GET, but you can specify your parameters directly in the URL (as a GET parameters). Example of CURL request : curl --request POST  --url 'https://YOUR_SERVER/api/v1/mdm/devices/DEVICE_ID/commands?command=SoftReset'  --header 'authorization: Basic BASE64_USERNAME_PASSWORD’  --header 'aw-tenant-code: AW_TENANT_CODE’
Hi Gary, You can put the command as a GET parameters in the query for example ' https://YOUR_SERVER/api/mdm/devices/DEVICE_ID/commands?command=SoftReset' If you want to send others command you ... See more...
Hi Gary, You can put the command as a GET parameters in the query for example ' https://YOUR_SERVER/api/mdm/devices/DEVICE_ID/commands?command=SoftReset' If you want to send others command you replace the ' SoftReset'  parameter with the wanted parameter. Hope this help you
Hello, You can find the battery level under « .../mdm/devices/search » or « .../mdm/devices/{id} » with the json key « BatteryLevel »