Options for deleting a Policy.

interface DeletePolicyOptions {
    id: string;
    idempotencyKey?: string;
}

Properties

Properties

id: string

The unique identifier of the policy to delete. This is a UUID that's generated when the policy is created.

idempotencyKey?: string

The idempotency key to ensure the request is processed exactly once. Used to safely retry requests without accidentally performing the same operation twice.