Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \ --url https://api.acornops.dev/api/v1/sessions/{sessionId}/messages \ --cookie acornops_cp_session=
const options = {method: 'GET', headers: {cookie: 'acornops_cp_session='}};fetch('https://api.acornops.dev/api/v1/sessions/{sessionId}/messages', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "items": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "sessionId": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "content": "<string>", "createdAt": "2023-11-07T05:31:56Z", "format": "<string>" } ], "nextCursor": "<string>" }
{ "error": { "code": "<string>", "message": "<string>", "retryable": true, "details": {} }}
"6e30d188-7e4f-4cce-a368-40b34004d725"
1 <= x <= 200
Message page payload: { items, nextCursor? }.
Show child attributes