POST
/
api
/
r2r
/
v3
/
conversations
/
{id}
Update conversation
curl --request POST \
  --url https://api.intelligence.io.solutions/api/r2r/v3/conversations/{id} \
  --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.

Path Parameters

id
integer
required

The unique identifier of the conversation to delete

Body

application/json
name
string
required

The updated name for the conversation

Response

200

results
object