action agco_ats_get_api_v2_users_id { label: "Get a specific user" description: "No Documentation Found." provider: agco_ats method: GET path: "/api/v2/Users/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { ChangePassword: { type: "string" description: "Never Returned. When changing a user's password, this field must contain the new password." } Email: { type: "string" description: "The user's email address" } Name: { type: "string" description: "The user's name" } Password: { type: "string" description: "Never Returned. Required when creating a new user or updating a user. When changing a user's password this field must contain the current password." } UserID: { type: "integer" format: "int32" description: "The user ID" } Username: { type: "string" description: "The username used for authentication" } } } }