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,27 @@
{
"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"
}
}
}
}
}