action motaword_get_glossary { label: "View a glossary" description: "View the details of a glossary file uploaded to a project." provider: motaword method: GET path: "/projects/{projectId}/glossaries/{glossaryId}" encoding: json input: { type: "object" properties: { glossaryId: { type: "integer" format: "int64" } projectId: { type: "integer" format: "int64" } } required: ["glossaryId", "projectId"] additionalProperties: false } output: { type: "object" properties: { id: { type: "integer" format: "int64" } links: { type: "object" } name: { type: "string" } uploaded_at: { type: "integer" format: "int64" description: "Unix epoch time" } } } }