resolve_credential_alias
Convert credential aliases to their corresponding IDs for use in n8n workflow operations and API calls.
Instructions
Resolve a credential alias to its ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| alias | Yes | The credential alias/name to resolve |
Input Schema (JSON Schema)
{
"properties": {
"alias": {
"description": "The credential alias/name to resolve",
"type": "string"
}
},
"required": [
"alias"
],
"type": "object"
}