POST
/
api
/
r2r
/
v3
/
conversations
Create a new conversation
curl --request POST \
  --url https://api.intelligence.io.solutions/api/r2r/v3/conversations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "results": {
    "id": "id",
    "created_at": "2024-01-15T09:30:00Z",
    "user_id": "user_id",
    "name": "name"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string

The name of the conversation

Response

200

results
object