action motaword_get_invoice { label: "View project invoice" description: "View your invoice details for your translation project." provider: motaword method: GET path: "/projects/{id}/invoice" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { amount: { type: "number" format: "float" description: "Monetary amount" } base_amount: { type: "number" format: "float" description: "Monetary amount" } base_currency: { type: "string" } billing: { type: "object" } currency: { type: "string" } id: { type: "integer" format: "int64" } invoice_no: { type: "integer" format: "int64" } invoiced_at: { type: "string" format: "date-time" description: "the date-time notation as defined by RFC 3339, section 5.6, for example, 2017-07-21T17:32:28Z" } links: { type: "object" } status: { type: "string" } } } }