GET
/
api
/
r2r
/
v3
/
conversations
/
{id}
Get conversation details
curl --request GET \
  --url https://api.intelligence.io.solutions/api/r2r/v3/conversations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "id",
      "message": {
        "role": "user",
        "content": "This is a test message."
      },
      "metadata": {
        "key": "value"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
integer
required

The unique identifier of the conversation

Response

200

results
object[]