action agco_ats_translation_requests_get_translation_request { label: "Get a TranslationRequest object by id. Returns TranslationRequest object with its language ids and string ids." description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/TranslationRequests/{Id}" encoding: json input: { type: "object" properties: { Id: { type: "integer" format: "int32" } } required: ["Id"] additionalProperties: false } output: { type: "object" description: "A request to translate specified strings into specified locales" required: ["CCEmailAddresses", "ChargeToAccount", "Deadline", "LocaleIds", "Notes", "State"] 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" } } } }