curl --request PATCH \
--url https://api.example.com/api/v2/projects/{project_id}/sessions/{session_id}/traces/id/{trace_id}/metadata \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'{
"message": "<string>"
}Merge custom metadata into an existing trace. Use to enrich traces with post-hoc context.
curl --request PATCH \
--url https://api.example.com/api/v2/projects/{project_id}/sessions/{session_id}/traces/id/{trace_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)