curl --request PATCH \
--url https://api.example.com/api/v2/projects/{project_id}/sessions/id/{session_id}/metadata \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'{
"message": "<string>"
}Merge custom metadata into an existing session. Use to enrich sessions with post-hoc context like user ID or business metrics. See SDK method.
curl --request PATCH \
--url https://api.example.com/api/v2/projects/{project_id}/sessions/id/{session_id}/metadata \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'{
"message": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
SimpleResponseWithMessage(message: str)