mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-11-22 16:07:29 -06: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,27 @@
|
|||
{
|
||||
"name": "getDocumentIdByAutocomplete",
|
||||
"method": "GET",
|
||||
"endpoint": "/customer/search/{user}",
|
||||
"description": "Get document ID by autocomplete user search.",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "user",
|
||||
"in": "path",
|
||||
"type": "string",
|
||||
"required": true,
|
||||
"description": "User search term"
|
||||
}
|
||||
],
|
||||
"requiresAuth": true,
|
||||
"response": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"results": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue