mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-28 22:12:26 -05:00
29 lines
No EOL
650 B
JSON
29 lines
No EOL
650 B
JSON
{
|
|
"name": "getCustomerByDocument",
|
|
"method": "GET",
|
|
"endpoint": "/customer/specificCustomer",
|
|
"description": "Get customer information by document ID and type.",
|
|
"parameters": [
|
|
{
|
|
"name": "documentId",
|
|
"type": "string",
|
|
"required": false,
|
|
"description": "Document ID of the customer.",
|
|
"in": "query"
|
|
},
|
|
{
|
|
"name": "documentType",
|
|
"type": "string",
|
|
"required": false,
|
|
"description": "Type of document (e.g., CC, CE, NIT).",
|
|
"in": "query"
|
|
}
|
|
],
|
|
"requiresAuth": true,
|
|
"response": {
|
|
"type": "object",
|
|
"properties": {
|
|
"customer": "object"
|
|
}
|
|
}
|
|
} |