Account_API::delete_account_by_id( $account_id )
{@inheritDoc}
Source
File: src/Tribe/Meetings/Zoom/Account_API.php
public function delete_account_by_id( $account_id ) {
$revoked = $this->revoke_account_by_id( $account_id );
if ( ! $revoked ) {
return $revoked;
}
delete_option( $this->single_account_prefix . $account_id );
$this->delete_from_list_of_accounts( $account_id );
return $revoked;
}