mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-28 22:12:26 -05:00
27 lines
No EOL
534 B
JSON
27 lines
No EOL
534 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |