mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-29 14:22:26 -05:00
Adding customer actions
This commit is contained in:
parent
a52b70760e
commit
e254f685b0
11 changed files with 527 additions and 0 deletions
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue