get_credential_schema
Retrieve JSON schema for specific credential types to understand required fields and structure when configuring n8n workflow credentials.
Instructions
Get JSON schema for a credential type
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| credentialTypeName | Yes | The name of the credential type |
Input Schema (JSON Schema)
{
"properties": {
"credentialTypeName": {
"description": "The name of the credential type",
"type": "string"
}
},
"required": [
"credentialTypeName"
],
"type": "object"
}