action openchannel_post_stripe_gateway_user_user_id_cards_card_id { label: "Updates a credit card for this user" description: "\n- Results are returned for the market provided within the basic authentication credentials\n" provider: openchannel method: POST path: "/stripe-gateway/user/{userId}/cards/{cardId}" encoding: json input: { type: "object" properties: { address_city: { type: "string" } address_country: { type: "string" } address_line1: { type: "string" } address_line2: { type: "string" } address_state: { type: "string" } address_zip: { type: "string" } cardId: { type: "string" } isDefault: { type: "boolean" } userId: { type: "string" } } required: ["cardId", "userId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }