mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-11-24 00:23:32 -06:00
16 lines
355 B
JSON
16 lines
355 B
JSON
|
|
{
|
||
|
|
"name": "generateToken",
|
||
|
|
"method": "POST",
|
||
|
|
"endpoint": "/login/generateToken",
|
||
|
|
"description": "Generate authentication token using credentials.",
|
||
|
|
"parameters": [],
|
||
|
|
"requiresAuth": false,
|
||
|
|
"response": {
|
||
|
|
"type": "object",
|
||
|
|
"properties": {
|
||
|
|
"token": "string",
|
||
|
|
"token_type": "string",
|
||
|
|
"expires_in": "number"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|