action crucible_login { label: "login" description: "Get the user authentication token.\n \n This is a legacy version of the login request. Using GET is deprecated as your password is likely to appear in logs which record request URLs.\n Use the POST version instead." provider: crucible method: GET path: "/rest-service/auth-v1/login" encoding: json input: { type: "object" properties: { password: { type: "string" } userName: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }