## Void `v1.credit_grants.void(CreditGrantVoidParams**kwargs) -> CreditGrantVoidResponse` **post** `/v1/credits/voidGrant` Void a credit grant ### Parameters - **id:** `str` - **release\_uniqueness\_key:** `bool` If true, resets the uniqueness key on this grant so it can be re-used - **void\_credit\_purchase\_invoice:** `bool` If true, void the purchase invoice associated with the grant ### Returns - `class CreditGrantVoidResponse` - **data:** `ID` ### Example ```python from metronome import Metronome client = Metronome( bearer_token="My Bearer Token", ) response = client.v1.credit_grants.void( id="9b85c1c1-5238-4f2a-a409-61412905e1e1", ) print(response.data) ```