curl --request PATCH \
--url https://api.orq.ai/v2/conversations/{conversation_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayName": "Renamed Conversation"
}
'{
"kind": "conversation",
"displayName": "<string>",
"createdAt": 123,
"updatedAt": 123,
"_id": "conv_01kbmyap3vzc6mtbwbdqtegan2",
"createdById": "<string>",
"updatedById": "<string>"
}Modifies an existing conversation’s properties. Only the fields provided in the request body will be updated; all other fields remain unchanged. Changes are applied immediately.
curl --request PATCH \
--url https://api.orq.ai/v2/conversations/{conversation_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayName": "Renamed Conversation"
}
'{
"kind": "conversation",
"displayName": "<string>",
"createdAt": 123,
"updatedAt": 123,
"_id": "conv_01kbmyap3vzc6mtbwbdqtegan2",
"createdById": "<string>",
"updatedById": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the conversation to update The unique identifier of the conversation to update
"conv_01jj1hdhn79xas7a01wb3hysdb"
Updated display name for the conversation.
1 - 100"Renamed Conversation"
Conversation successfully updated. Returns the complete updated conversation object.
Type discriminator indicating this is a conversation Type discriminator indicating this is a conversation
conversation Display name for the conversation. Can be auto-generated or set by the user. Display name for the conversation. Can be auto-generated or set by the user.
1 - 100Unix timestamp (in milliseconds) when the conversation was created Unix timestamp (in milliseconds) when the conversation was created
Unix timestamp (in milliseconds) when the conversation was last updated Unix timestamp (in milliseconds) when the conversation was last updated
Unique ULID (Universally Unique Lexicographically Sortable Identifier) for the conversation, prefixed with "conv_" Unique ULID (Universally Unique Lexicographically Sortable Identifier) for the conversation, prefixed with "conv_"
Optional identifier of the user or agent that created the conversation Optional identifier of the user or agent that created the conversation
Optional identifier of the user or agent that last updated the conversation Optional identifier of the user or agent that last updated the conversation
Was this page helpful?