action beanstream_delete_profiles_profile_id_cards_card_id { label: "Delete card" description: "Delete a card on the profile." provider: beanstream method: DELETE path: "/profiles/{profileId}/cards/{cardId}" encoding: json input: { type: "object" properties: { cardId: { type: "string" } profileId: { type: "string" } } required: ["cardId", "profileId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }