Skip to main content
POST
/
v1
/
agents
/
{agentId}
/
conversations
/
{conversationId}
/
note
Upsert a note on a conversation
curl --request POST \
  --url https://api.us.poly.ai/v1/agents/{agentId}/conversations/{conversationId}/note \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "note": "<string>"
}
'
{
  "success": true
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

agentId
string
required
conversationId
string
required

Body

application/json

Request body for upserting a note on a conversation.

note
string
required

Response

Successful response

Minimal success payload for mutation endpoints.

success
boolean
default:true
Last modified on June 4, 2026