Overview
This node obtains an authentication token from Intradesk, a service platform. It is useful for workflows that require authenticated access to Intradesk APIs or resources. For example, it can be used to automate login processes or to fetch tokens for subsequent API calls within an n8n workflow.
Use Case Examples
- Automate retrieval of Intradesk auth tokens for API requests.
- Integrate Intradesk authentication into a larger workflow requiring secure access.
Properties
| Name | Meaning |
|---|---|
| Intradesk Tenant | The tenant domain of the Intradesk instance, e.g., 'pop-up.intradesk.ru'. This specifies which Intradesk tenant to authenticate against. |
| Auth Scope | The authentication scope string defining the permissions requested during token acquisition, e.g., 'openid profile email custom.profile api offline_access'. |
Output
JSON
access_token- The authentication token received from Intradesk for API access.token_type- The type of token issued, typically 'Bearer'.expires_in- The duration in seconds before the token expires.scope- The scopes granted with the token.
Dependencies
- Requires Intradesk API credentials (username and password) to authenticate and obtain the token.
Troubleshooting
- Ensure the Intradesk tenant domain is correctly specified and reachable.
- Verify that the provided credentials (username and password) are valid and have the necessary permissions.
- Check that the auth scope string is correctly formatted and includes required scopes.
- Common errors may include authentication failures due to invalid credentials or incorrect tenant domain, resulting in failure to obtain a token.