curl --request POST \
--url http://localhost:8000/v2/workspaces/{workspace_id}/sessions/{session_id}/messages/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"messages": [
{
"content": "<string>",
"peer_id": "<string>",
"metadata": {},
"configuration": {
"deriver": {
"enabled": true,
"custom_instructions": "<string>"
},
"peer_card": {
"use": true,
"create": true
}
},
"created_at": "2023-11-07T05:31:56Z"
}
]
}
'