POST
/api/assistant/sessions
Authentication
Request Body
Required
pentest_idstring
Example:
{
"pentest_id": "string"
}Responses
200
Session created
Response Fields:
session_id(string)title(string)pentest_id(string)created_at(string)messages(object[])
Example:
{
"session_id": "string",
"title": "string",
"pentest_id": "string",
"created_at": "string",
"messages": [
{
"id": "string",
"role": "string",
"content": "string",
"created_at": "string",
"model_used": "string",
"route": "string"
}
]
}