action openchannel_delete_stripe_gateway_user_user_id_cards_card_id { label: "Removes a credit card for a user" provider: openchannel method: DELETE path: "/stripe-gateway/user/{userId}/cards/{cardId}" encoding: json input: { type: "object" properties: { cardId: { type: "string" } userId: { type: "string" } } required: ["cardId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }