mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-11-28 02:03:31 -06:00
Adding customer actions
This commit is contained in:
parent
a52b70760e
commit
e254f685b0
11 changed files with 527 additions and 0 deletions
|
|
@ -604,5 +604,68 @@
|
|||
"required": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"CloneUserDTO": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"sourceUsername": {
|
||||
"type": "string",
|
||||
"description": "Source username to clone from",
|
||||
"required": true
|
||||
},
|
||||
"targetUsername": {
|
||||
"type": "string",
|
||||
"description": "Target username to clone to",
|
||||
"required": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"DsUserSession": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"userId": {
|
||||
"type": "string",
|
||||
"description": "User ID",
|
||||
"required": false
|
||||
},
|
||||
"username": {
|
||||
"type": "string",
|
||||
"description": "Username",
|
||||
"required": false
|
||||
},
|
||||
"token": {
|
||||
"type": "string",
|
||||
"description": "Session token",
|
||||
"required": false
|
||||
},
|
||||
"roles": {
|
||||
"type": "array",
|
||||
"description": "User roles",
|
||||
"items": {
|
||||
"type": "string"
|
||||
},
|
||||
"required": false
|
||||
}
|
||||
}
|
||||
},
|
||||
"DeleteCustomerDTO": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"documentId": {
|
||||
"type": "string",
|
||||
"description": "Document ID of customer to delete",
|
||||
"required": true
|
||||
},
|
||||
"documentType": {
|
||||
"type": "string",
|
||||
"description": "Document type",
|
||||
"required": true
|
||||
},
|
||||
"reason": {
|
||||
"type": "string",
|
||||
"description": "Reason for deletion",
|
||||
"required": false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue