Actions199
- Collections Actions
- Forms Actions
- Actions Capabilities Actions
- Activities Actions
- Attachments Actions
- Budgets Actions
- Categories Actions
- Custom Actions Actions
- Custom Options Actions
- Documents Actions
- File Links Actions
- View File Link
- Delete File Link
- Open File Link
- Download File Link
- List Project Storages
- Get Project Storage
- Open Project Storage
- Create Storage
- Get Storage
- Update Storage
- Delete Storage
- Get Storage Files
- Prepare Storage File Upload
- Create Storage Folder
- Create Storage Oauth Credentials
- Open Storage
- Create Work Package File Link
- List Work Package File Links
- Grids Actions
- Groups Actions
- Help Texts Actions
- Memberships Actions
- Query Filter Instance Schema Actions
- News Actions
- Notifications Actions
- O Auth 2 Actions
- Posts Actions
- Principals Actions
- Priorities Actions
- Query Columns Actions
- Query Filters Actions
- Query Operators Actions
- Query Sort Bys Actions
- Relations Actions
- Previewing Actions
- Revisions Actions
- Roles Actions
- Time Entries Actions
- Time Entry Activities Actions
- Types Actions
- User Preferences Actions
- Wiki Pages Actions
- Work Schedule Actions
- Meetings Actions
- Values Property Actions
- Projects Actions
- Queries Actions
- Users Actions
- Statuses Actions
- Versions Actions
- Work Packages Actions
- Get Project Work Package Collection
- Create Project Work Package
- List Work Package File Links
- Form Create Work Package In Project
- Project Available Assignees
- List Work Packages
- Create Work Package
- Form Create Work Package
- List Work Package Schemas
- View Work Package Schema
- Delete Work Package
- View Work Package
- Update Work Package
- List Work Package Activities
- Comment Work Package
- Work Package Available Assignees
- Available Projects For Work Package
- List Available Relation Candidates
- Available Watchers
- Create Work Package File Link
- Form Edit Work Package
- Revisions
- Reminders
- List Watchers
- Add Watcher
- Remove Watcher
- Views Actions
Overview
This node operation retrieves details of a specific OAuth 2 application by its unique identifier. It is useful when you need to fetch configuration or metadata about an existing OAuth application, for example, to display its settings, verify its existence, or use its data in subsequent workflow steps.
Practical examples include:
- Fetching OAuth app details to audit or log their configurations.
- Using the retrieved OAuth app information to dynamically configure other API calls.
- Validating that an OAuth app exists before performing operations related to it.
Properties
| Name | Meaning |
|---|---|
| Id | The unique numeric identifier of the OAuth application to retrieve. This is required to specify which OAuth app's details should be fetched. |
Output
The output will contain a JSON object representing the OAuth application's details as returned by the API. This typically includes fields such as the application's name, client ID, redirect URIs, scopes, and other metadata relevant to the OAuth app configuration.
No binary data output is indicated.
Dependencies
- Requires an API key credential for authentication to the service managing OAuth applications.
- The node expects the base URL of the API to be configured in the credentials.
- The node uses standard HTTP headers for JSON content negotiation (
Accept: application/jsonandContent-Type: application/json).
Troubleshooting
- Common issue: Providing an invalid or non-existent OAuth application ID will likely result in an error response from the API (e.g., 404 Not Found). Ensure the ID is correct and the OAuth app exists.
- Authentication errors: If the API key or credentials are missing or invalid, the node will fail to authenticate. Verify that the API key credential is correctly set up.
- Network issues: Connectivity problems or incorrect base URL configuration can cause request failures. Confirm the API endpoint URL is accurate and reachable.
Links and References
- OAuth 2.0 specification: https://oauth.net/2/
- API documentation for managing OAuth applications (specific to the service used; not provided here)