GET api/Village/{village}/AI/History?asOf={asOf}
Get AI chat history for the user
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
asOf | date |
Required |
|
village | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of AIChatHistoryModelName | Description | Type | Additional information |
---|---|---|---|
Id |
Message ID |
globally unique identifier |
None. |
VillageId |
Village ID |
globally unique identifier |
None. |
UserId |
User ID |
globally unique identifier |
None. |
Role |
Role (0 = User, 1 = AI Assistant, 2 = Caring Village Assistant |
ChatHistoryRole |
None. |
Content |
Message content |
string |
None. |
Date |
Date message was posted |
date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": "c011b609-4c49-4146-a35f-09b391bbaa7c", "VillageId": "68d94dd4-fd37-4566-a38e-08263ad43b9f", "UserId": "1a330e53-c8e7-430b-87ea-2cc47c9a0237", "Role": 0, "Content": "sample string 4", "Date": "2025-06-03T05:37:32.433+00:00" }, { "Id": "c011b609-4c49-4146-a35f-09b391bbaa7c", "VillageId": "68d94dd4-fd37-4566-a38e-08263ad43b9f", "UserId": "1a330e53-c8e7-430b-87ea-2cc47c9a0237", "Role": 0, "Content": "sample string 4", "Date": "2025-06-03T05:37:32.433+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfAIChatHistoryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CaringVillage.Shared.Implementation.Models"> <AIChatHistoryModel> <Content>sample string 4</Content> <Date>2025-06-03T05:37:32.4332738+00:00</Date> <Role>User</Role> <Id>c011b609-4c49-4146-a35f-09b391bbaa7c</Id> <UserId>1a330e53-c8e7-430b-87ea-2cc47c9a0237</UserId> <VillageId>68d94dd4-fd37-4566-a38e-08263ad43b9f</VillageId> </AIChatHistoryModel> <AIChatHistoryModel> <Content>sample string 4</Content> <Date>2025-06-03T05:37:32.4332738+00:00</Date> <Role>User</Role> <Id>c011b609-4c49-4146-a35f-09b391bbaa7c</Id> <UserId>1a330e53-c8e7-430b-87ea-2cc47c9a0237</UserId> <VillageId>68d94dd4-fd37-4566-a38e-08263ad43b9f</VillageId> </AIChatHistoryModel> </ArrayOfAIChatHistoryModel>