action motaword_get_payment_info { label: "View your payment and billing info" description: "Returns billing and saved credit card information for user, and their corporate account if present & allowed." provider: motaword method: GET path: "/payment" encoding: json output: { type: "object" properties: { billing: { type: "object" } card: { type: "object" properties: { bin: { type: "string" } id: { type: "integer" format: "int64" } is_default: { type: "boolean" } payment_code: { type: "string" } } } cards: { type: "array" items: { type: "object" additionalProperties: true } } corporate: { type: "object" properties: { allow_api_invoicing: { type: "boolean" } allow_payment_code: { type: "boolean" } auto_charge: { type: "boolean" } billing: { type: "object" additionalProperties: true } card: { type: "object" additionalProperties: true } contact_email_address: { type: "string" } payment_code: { type: "string" } } } shared_card: { type: "object" additionalProperties: true } } } }