Skip to main content

Account Delete

Input/OutputData Type
InputStdAccountDeleteInput
OutputStdAccountDeleteOutput

Example StdAccountDeleteInput​

{
"identity": "john.doe",
"key": {
"simple": {
"id": "john.doe"
}
}
}

Example StdAccountDeleteOutput​

{
}

Description​

The account delete command sends one attribute from IDN, the identity to delete. This can be passed to your connector to delete the account from the source system.

Enable account delete in IDN through a BeforeProvisioning rule. The connector honors whichever operation the provisioning plan sends. For more information, see the documentation and an example implementation.

The following snippet shows an example of account delete command implementation:

index.ts

.stdAccountDelete(async (context: Context, input: StdAccountDeleteInput, res: Response<StdAccountDeleteOutput>) => {
const account = await airtable.getAccount(input.key)
res.send(await airtable.deleteAccount(account.airtableId))
})

airtable.ts

async deleteAccount(airTableid: string): Promise<Record<string, never>> {
return this.airTableBase('Users').destroy(airTableid,
).then(() => {
return {}
}).catch(err => {
throw new ConnectorError('error while deleting account: ' + err)
})
}