curl --request POST \
--url https://platform.agentictrust.com/api/v1/chat/messages \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"conversationId": "<string>",
"projectId": "<string>",
"messages": [
{
"role": "<string>",
"content": "<string>",
"id": "<string>",
"parts": [
{
"type": "<string>",
"text": "<string>"
}
]
}
],
"pageContext": {
"url": "<string>",
"title": "<string>",
"description": "<string>",
"referrer": "<string>",
"textContent": "<string>",
"headings": [
"<string>"
],
"buttons": [
"<string>"
],
"links": [
{
"href": "<string>",
"text": "<string>"
}
],
"formFields": [
{
"name": "<string>",
"type": "<string>",
"label": "<string>",
"placeholder": "<string>"
}
]
},
"userTokens": {}
}
'