Skip to content

unregisterApp

Function
unregisterApp(requestOptionsIUnregisterAppOptions): Promise<IUnregisterAppResponse>

Used to unregister the app with given itemId . See the REST Documentation for more information.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { unregisterApp, IUnregisterAppResponse } from '@esri/arcgis-rest-developer-credentials';
import { ArcGISIdentityManager } from "@esri/arcgis-rest-request";

const authSession: ArcGISIdentityManager = await ArcGISIdentityManager.signIn({
 username: "xyz_usrName",
 password: "xyz_pw"
});

unregisterApp({
 itemId: "xyz_itemId",
 authentication: authSession
}).then((unregisteredApp: IUnregisterAppResponse) => {
 // => {itemId: "xyz_itemId", success: true}
}).catch(e => {
 // => an exception object
});
Parameters
ParameterTypeNotes
requestOptionsIUnregisterAppOptions

Options for unregisterApp() , including itemId of which app to be un-registered and an @esri/arcgis-rest-request!ArcGISIdentityManager authentication session.

Returns 
Promise<IUnregisterAppResponse>

A Promise that will resolve to an IUnregisterAppResponse object representing un-registration status.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.