action motaword_get_credit_card { label: "View saved credit card" provider: motaword method: GET path: "/payment/{cardId}" encoding: json input: { type: "object" properties: { cardId: { type: "integer" format: "int64" } } required: ["cardId"] additionalProperties: false } output: { type: "object" properties: { bin: { type: "string" } id: { type: "integer" format: "int64" } is_default: { type: "boolean" } payment_code: { type: "string" } } } }