List Testimonies History
Retrieves testimonies history for an authenticated user.
HTTP Request
GET /api/v1/me/testimonies/history
Response
200 OK
json
{
"data": [
{
"id": "9dc6f0f8-f7d7-4676-8c07-13a1f0865681",
"state": "cancelled",
"purpose": "mortgage",
"price": null,
"client": {
"emailVerified": false,
"newsletterSubscribed": true,
"email": "pavol@gmail.com",
"phone": "+4219112345659",
"firstName": "Pavol",
"lastName": "Paška",
"role": "client",
"billingAddress": null,
"shippingAddress": null,
"company": null,
"bankAccount": null
},
"expert": null,
"realEstate": {
"type": "house",
"properties": {
"parcelCount": 2,
"storeyCount": 1,
"otherBuildingCount": 0,
"detachedGarageCount": 1
},
"address": {
"line1": "Ulica",
"line2": null,
"city": null,
"postalCode": null,
"parcelNumber": "123",
"cadastralArea": "456"
},
"addressCoords": {
"lat": -5.656353,
"lng": 59.71275
},
"userCoords": null
},
"notes": "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
"cancellationReason": null,
"acceptedOffer": null,
"offers": [],
"createdAt": "2024-12-21T10:41:59+00:00"
}
]
}Sorting
Use the sort query parameter; default is createdAt DESC.
- No dash (e.g.,
&sort=createdAt): ascending - Dash (e.g.,
&sort=-createdAt): descending - Possible fields:
name,type,address,purpose,createdAt,completedAt
Searching
Use the search query parameter for full-text search.