# Update a single card permission Enable or disable a single spending permission on a card. For bulk updates, use the v4 endpoint instead. Endpoint: PATCH /v3/spend/profiles/{profileId}/cards/{cardToken}/spending-permissions Security: UserToken ## Path parameters: - `profileId` (integer, required) The ID of the profile that owns the card. Example: 123456 - `cardToken` (string, required) The unique token identifying the card. Example: "ca0c8154-1e14-4464-a1ce-dcea7dc3de52" ## Request fields (application/json): - `type` (string, required) The permission type to update. Enum: "ECOM", "POS_CHIP", "POS_MAGSTRIPE", "POS_CONTACTLESS", "ATM_WITHDRAWAL", "MOBILE_WALLETS" - `isEnabled` (boolean, required) Whether to enable or disable this permission. Example: true ## Response 200 fields