mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-11-29 10:33:33 -06:00
Adding customer actions
This commit is contained in:
parent
a52b70760e
commit
e254f685b0
11 changed files with 527 additions and 0 deletions
34
nodes/S4DSMain/actions/customers/getAdvancedSearch.json
Normal file
34
nodes/S4DSMain/actions/customers/getAdvancedSearch.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"name": "getAdvancedSearch",
|
||||
"method": "GET",
|
||||
"endpoint": "/customer/advancedSearch",
|
||||
"description": "Perform advanced search for customers.",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "query",
|
||||
"in": "query",
|
||||
"type": "string",
|
||||
"required": false,
|
||||
"description": "Search query"
|
||||
},
|
||||
{
|
||||
"name": "languaje",
|
||||
"in": "query",
|
||||
"type": "string",
|
||||
"required": false,
|
||||
"description": "Language preference"
|
||||
}
|
||||
],
|
||||
"requiresAuth": true,
|
||||
"response": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"results": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue