| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

---

### API Specification

#### Parameters

- **discussionId**  
  string, required  
  The unique identifier of the discussion

- **message**  
  string, required  
  The user message to continue the discussion

- **metadata**  
  object, Optional metadata as key-value pairs

- **attachments**  
    array of objects, Optional attachments associated with the message

- **context**  
  object

#### Authorization

- **x-universe-auth**  
  string, required  
  JWT authentication token

### Response Codes

- `200`  
  Discussion continued with streaming AI response

- `400`  
  Bad request - invalid message or context

- `401`  
  Unauthorized - invalid or missing authentication

- `404`  
  Discussion not found

- `500`  
  Internal server error

### Example Request

```bash
curl --request POST \ 
     --url https://example.com/chats/discussionId/entries \ 
     --header 'accept: application/x-ndjson' \ 
     --header 'content-type: application/json'
```

### Example Response

```json
{
    "status": "success",
    "data": { 
        "message": "Updated3 months ago"
    }
}
```
