action beanstream_put_profiles_profile_id_cards_card_id { label: "Update card" description: "Update the details of a card on the profile." provider: beanstream method: PUT 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 } }