mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-28 22:12:26 -05:00
35 lines
No EOL
705 B
JSON
35 lines
No EOL
705 B
JSON
{
|
|
"name": "getConsultantInformation",
|
|
"method": "GET",
|
|
"endpoint": "/customer/balance",
|
|
"description": "Get consultant information and balance.",
|
|
"parameters": [
|
|
{
|
|
"name": "documentId",
|
|
"in": "query",
|
|
"type": "array",
|
|
"required": false,
|
|
"description": "Document ID filter",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
{
|
|
"name": "documentType",
|
|
"in": "query",
|
|
"type": "array",
|
|
"required": false,
|
|
"description": "Document type filter",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
],
|
|
"requiresAuth": true,
|
|
"response": {
|
|
"type": "object",
|
|
"properties": {
|
|
"balance": "object"
|
|
}
|
|
}
|
|
} |