Search a customer by firstname, lastname contractId
curl --request GET \
--url https://demo.enneo.ai/api/mind/customer/search
[
{
"id": 826907,
"firstname": "Richard",
"lastname": "Lohwasser",
"address": "Hauptstraße 1, 12345 Berlin",
"phone": 49123456789,
"email": "richard@lohwasser.de",
"contractIds": [
"715559"
]
}
]
Cookie-based authentication
The keyword to search
The number of items to return
1 <= x <= 1000
The number of items to skip
x >= 0
Successful operation
The response is of type object[]
.
curl --request GET \
--url https://demo.enneo.ai/api/mind/customer/search
[
{
"id": 826907,
"firstname": "Richard",
"lastname": "Lohwasser",
"address": "Hauptstraße 1, 12345 Berlin",
"phone": 49123456789,
"email": "richard@lohwasser.de",
"contractIds": [
"715559"
]
}
]