login
Authenticate users to Taiga project management platform by logging in with username and password, generating a session_id for secure, authenticated API interactions.
Instructions
Logs into a Taiga instance using username/password and returns a session_id for subsequent authenticated calls.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | Yes | ||
password | Yes | ||
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"host": {
"title": "Host",
"type": "string"
},
"password": {
"title": "Password",
"type": "string"
},
"username": {
"title": "Username",
"type": "string"
}
},
"required": [
"host",
"username",
"password"
],
"title": "loginArguments",
"type": "object"
}