action agco_ats_translation_requests_get_translation_requests { label: "Get all TranslationRequest objects. Returns a PagedResponse of TranslationRequest objects with their language ids and string ids." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/TranslationRequests" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { Entities: { type: "array" items: { type: "object" description: "A request to translate specified strings into specified locales" required: ["ChargeToAccount", "Deadline", "Notes", "State", "CCEmailAddresses", "LocaleIds"] properties: { ApprovalUserId: { type: "integer" format: "int32" description: "The ID of the user from which approval for the request is required" } CCEmailAddresses: { type: "array" description: "Additional email addresses to CC on emails pertaining to the request" items: { type: "string" } } ChargeToAccount: { type: "string" description: "The account to charge for the request" } Deadline: { type: "string" format: "date-time" description: "The date by which the translations in the request are needed. Defaults to 30 days from the current date" } Id: { type: "integer" format: "int32" description: "The ID of the request" } LocaleIds: { type: "array" description: "Locale IDs to which these strings are requested to be translated" items: { type: "integer" format: "int32" } } Notes: { type: "string" description: "Additional notes or comments about the request" } QuestionsUserId: { type: "integer" format: "int32" description: "The ID of the user to which to address questions regarding the request" } State: { type: "string" description: "The state of the request" enum: ["NotSubmitted", "Submitted", "Cancelled", "Completed"] } SubmittedBy: { type: "integer" format: "int32" description: "The ID of the User that submitted the request" } TranslatorEmail: { type: "string" description: "The email address for the translator" } TranslatorName: { type: "string" description: "The name of the translator" } } } } Metadata: { type: "object" description: "Metadata for the paged response" required: ["Limit", "Offset", "TotalCount"] properties: { Limit: { type: "integer" format: "int32" description: "The number of entities this paged response is limited to." } Offset: { type: "integer" format: "int32" description: "The number of entities prior to this page of items." } TotalCount: { type: "integer" format: "int32" description: "The total number of entities matching the request." } } } } } }