action motaword_get_corporate_by_id { label: "Get details of this corporate account" description: "Get details of this corporate account" provider: motaword method: GET path: "/corporates/{corporateId}" encoding: json input: { type: "object" properties: { corporateId: { type: "integer" format: "int64" } } required: ["corporateId"] additionalProperties: false } output: { type: "object" properties: { billing: { type: "object" } domain: { type: "string" } email: { type: "string" } id: { type: "integer" format: "int64" } logo: { type: "string" } name: { type: "string" } web_site: { type: "string" description: "Deprecated, use `domain`." } } } }