Adding customer actions

This commit is contained in:
Melany 2025-07-22 15:15:57 -05:00
commit e254f685b0
11 changed files with 527 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{
"name": "getConsultantInformation",
"method": "GET",
"endpoint": "/customer/balance",
"description": "Get consultant information and balance.",
"parameters": [
{
"name": "documentId",
"in": "query",
"type": "array",
"required": false,
"description": "Document ID filter",
"items": {
"type": "string"
}
},
{
"name": "documentType",
"in": "query",
"type": "array",
"required": false,
"description": "Document type filter",
"items": {
"type": "string"
}
}
],
"requiresAuth": true,
"response": {
"type": "object",
"properties": {
"balance": "object"
}
}
}