action motaword_get_invitation_vendors { label: "Get vendor list for compiled invitation needs" description: "Get vendor list for compiled invitation needs" provider: motaword method: POST path: "/invitation/vendors" encoding: json input: { type: "array" items: { type: "object" properties: { fileId: { type: "integer" format: "int64" } guid: { type: "string" } projectId: { type: "integer" format: "int64" } reason: { type: "string" } targetLanguage: { type: "array" items: { type: "string" } } taskType: { type: "array" items: { type: "string" } } } } } output: { type: "object" properties: { vendors: { type: "array" items: { type: "object" properties: { matchedNeeds: { type: "array" items: { type: "object" properties: { fileId: { type: "integer" format: "int64" } guid: { type: "string" } projectId: { type: "integer" format: "int64" } reason: { type: "string" } targetLanguage: { type: "array" items: { type: "string" } } taskType: { type: "array" items: { type: "string" } } } } } userId: { type: "integer" format: "int64" } } } } } } }