This endpoint is in preview and may be modified or removed at any time.
To use this endpoint, add preview=true
to the request query parameters.
Update the title for a session. Use this to set a custom title for a session to help identify it in the list of sessions with an Agent.
Third-party applications using this endpoint via OAuth2 must request the following operation scope: api:aip-agents-write
.
string
An RID identifying an AIP Agent created in AIP Agent Studio.
string
The Resource Identifier (RID) of the conversation session.
object
string
The new title for the session. The maximum title length is 200 characters. Titles are truncated if they exceed this length.
1
2
3
4
5
curl -X PUT \
-H "Content-type: application/json" \
-H "Authorization: Bearer $TOKEN" \
"https://$HOSTNAME/api/v2/aipAgents/agents/ri.aip-agents..agent.732cd5b4-7ca7-4219-aabb-6e976faf63b1/sessions/ri.aip-agents..session.292db3b2-b653-4de6-971c-7e97a7b881d6/updateTitle?preview=true" \
-d '{"title":"Order status 02/01"}'
Error Name | ||
---|---|---|
Update | Error Code | PERMISSION_DENIED |
Status Code | 403 | |
Description | Could not updateTitle the Session. | |
Parameters | agentRid, sessionRid | |
Session | Error Code | NOT_FOUND |
Status Code | 404 | |
Description | The given Session could not be found. | |
Parameters | agentRid, sessionRid | |
Agent | Error Code | NOT_FOUND |
Status Code | 404 | |
Description | The given Agent could not be found. | |
Parameters | agentRid |
See Errors for a general overview of errors in the platform.