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