action beanstream_post_profiles_profile_id_cards { label: "Add card" description: "Add a card to the profile. Note that there is a default limit of 1 card per profile. You can change this in your Profiles settings in the back office." provider: beanstream method: POST path: "/profiles/{profileId}/cards" encoding: json input: { type: "object" properties: { profileId: { type: "string" } } required: ["profileId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }