deleteApiKey
FunctiondeleteApiKey(requestOptions: IDeleteApiKeyOption): Promise<IDeleteApiKeyResponse>
Used to delete the API Key with given itemId
.
import { deleteApiKey, IDeleteApiKeyResponse } 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"
});
deleteApiKey({
itemId: "xyz_itemId",
authentication: authSession
}).then((deletedApiKey: IDeleteApiKeyResponse) => {
// => {itemId: "xyz_itemId", success: true}
}).catch(e => {
// => an exception object
});
Parameters
Parameter | Type | Notes |
---|---|---|
request | IDeleteApiKeyOption | Options for |
Returns
Promise<IDeleteApiKeyResponse>
A Promise that will resolve to an IDeleteApiKeyResponse
object representing deletion status.