In some cases, it could be the Workspace ONE UEM and Access integration is not working anymore. In the Workspace ONE UEM Admin Console there is a DELETE button to delete the configuration and start over again, but in Workspace ONE Access, there is no possibility to delete the configuration, and we must find a way with 3rd party tooling, such as POSTMAN, to delete the configuration.
Before we continue, note to the following DISCLAIMER:
- Only test and verify the mentioned steps in a TEST environment.
- For PRODUCTION environments, always consult and follow instructions from VMware
- We are not responsible for any errors, omissions or representations of these instructions. The readers accepts full responsibility into his/her actions.
Workspace ONE UEM
In Workspace ONE UEM, delete the WS1 Access configuration. Go to the Systems menu, Enterprise Integration, Workspace ONE Access Configuration. Click DELETE.

Workspace ONE Access
As mentioned earliers, there is no delete button in Workspace ONE Access. We will do this with POSTMAN. Before we can use postman, we are required to configure Remote App settings.
- In WS1 Access, go to Catalog, Settings

- Click Remote App Access, Clients, Create Client

- Fill in the following client configuration details:
- Access type = Service Client Token
- Client ID= postman_API
- Write down “Client ID” value, you’ll need it later!

- Click on “Advanced”

- Click on “Generate Shared Secret“

- Copy the Shared Secret and save it to a text file, you’ll need it later.

- Leave other configuration settings as-is and click on Add

- Download & install POSTMAN: https://www.postman.com/downloads/
- In Postman, Create a New environment

- Fill in the following variables and values:
- VIDMhost = WS1 Access URL. Make sure there is no trailing slash (“/”) at the end of the URL!
- VIDM_oauth_clientID = Postman_API (step 3). Make sure to type it exactly as you’ve created in step 3.
- VIDM_oauth_sharedsecret = Paste the Shared Secret from step 4.
- VIDM_oauth_bearerToken = leave empty
Click SAVE

- In POSTMAN, click the “+” sign

- Select POST from request types drop-down menu.

- type in the URL: {{VIDMhost}}/SAAS/auth/oauthtoken?grant_type=client_credentials

- Click the tab Authorization

- Type = Basic Auth
- Username = {{VIDM_oauth_clientID}}
- Password = {{VIDM_oauth_sharedsecret}}

- Click SEND

- Copy the Access Token, make sure you copy only text without the double quotes

- Click again the “+” sign

- Select DELETE from request types drop-down menu.

- URL = {{VIDMhost}}/SAAS/jersey/manager/api/tenants/tenant/airwatchoptin/config

- Click the tab Authorization
- Type = Bearer Token
- Token = Access Token from step 16

- Click SEND.

- you should see the following output if “DELETE” request was executed successfully

- Confirm that the UEM configuration in WS1 Access Admin Portal is now gone!
