n8n-nodes-starter/nodes/S4DSMain/actions/customers/inactiveCustomer.json

18 lines
364 B
JSON
Raw Normal View History

2025-07-22 15:15:57 -05:00
{
"name": "inactiveCustomer",
"method": "DELETE",
"endpoint": "/customer/deleteCustomer",
"description": "Deactivate/delete a customer.",
"parameters": [],
"requiresAuth": true,
"requestBody": {
"schema": "DeleteCustomerDTO",
"required": true
},
"response": {
"type": "object",
"properties": {
"result": "object"
}
}
}