Skip to main content
GET
/
api
/
memory
/
agents
/
{id}
/
messages
Get messages for this agent
curl --request GET \
  --url https://api.bedrock.orinlabs.org/api/memory/agents/{id}/messages/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "message_data": "<string>",
    "timestamp": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Response

id
integer
required
message_data
string
required
timestamp
string<date-time>
required
created_at
string<date-time>
required