Skip to main content
PATCH
/
api
/
v1
/
allmodelchat
/
conversations
/
{conversation_id}
Update Conversation
curl --request PATCH \
  --url https://api.example.com/api/v1/allmodelchat/conversations/{conversation_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "model_id": "<string>",
  "style_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "folder": "<string>",
  "is_pinned": true
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "title": "<string>",
  "model_id": "<string>",
  "style_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "folder": "<string>",
  "is_pinned": true,
  "status": "<string>",
  "message_count": 123,
  "total_cost_credits": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.aitasker.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

conversation_id
string<uuid>
required

Body

application/json
title
string | null
model_id
string | null
style_id
string<uuid> | null
folder
string | null
is_pinned
boolean | null

Response

Successful Response

id
string<uuid>
required
title
string
required
model_id
string | null
required
style_id
string<uuid> | null
required
folder
string | null
required
is_pinned
boolean
required
status
string
required
message_count
integer
required
total_cost_credits
number
required
created_at
string<date-time>
required
updated_at
string<date-time>
required