Analytics
Update an Analytics Record
Updates an analytics record for a specific user input. Allows modifying conversation properties, Flow and Intent details, ratings, handover information, Slots, tracked goals, and custom fields.
PATCH
/
v2.0
/
analytics
Update an Analytics Record
curl --request PATCH \
--url https://api-trial.cognigy.ai/new/v2.0/analytics \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"contactId": "contactId",
"projectId": "projectId",
"sessionId": "sessionId",
"inputId": "inputId",
"properties": {
"state": "state",
"mode": "mode",
"userType": "user userType",
"channel": "channel",
"flowLanguage": "new flowLanguage",
"intent": "new intent",
"intentFlow": "new intentFlow",
"intentScore": 0,
"flowName": "new flowName",
"inHandoverRequest": false,
"inHandoverConversation": false,
"localeName": "new localeName",
"rating": 9,
"ratingComment": "new ratingComment",
"entrypointType": "new entrypointType",
"endpointName": "new endpointName",
"endpointUrlToken": "new endpointUrlToken",
"handoverEscalations": 2,
"snapshotName": "new snapshotName",
"slots": "new slots",
"custom1": "new custom1",
"custom2": "new custom2",
"custom3": "new custom3",
"custom4": "new custom4",
"custom5": "new custom5",
"custom6": "new custom6",
"custom7": "new custom7",
"custom8": "new custom8",
"custom9": "new custom9",
"custom10": "new custom10"
}
}
'import requests
url = "https://api-trial.cognigy.ai/new/v2.0/analytics"
payload = {
"contactId": "contactId",
"projectId": "projectId",
"sessionId": "sessionId",
"inputId": "inputId",
"properties": {
"state": "state",
"mode": "mode",
"userType": "user userType",
"channel": "channel",
"flowLanguage": "new flowLanguage",
"intent": "new intent",
"intentFlow": "new intentFlow",
"intentScore": 0,
"flowName": "new flowName",
"inHandoverRequest": False,
"inHandoverConversation": False,
"localeName": "new localeName",
"rating": 9,
"ratingComment": "new ratingComment",
"entrypointType": "new entrypointType",
"endpointName": "new endpointName",
"endpointUrlToken": "new endpointUrlToken",
"handoverEscalations": 2,
"snapshotName": "new snapshotName",
"slots": "new slots",
"custom1": "new custom1",
"custom2": "new custom2",
"custom3": "new custom3",
"custom4": "new custom4",
"custom5": "new custom5",
"custom6": "new custom6",
"custom7": "new custom7",
"custom8": "new custom8",
"custom9": "new custom9",
"custom10": "new custom10"
}
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
contactId: 'contactId',
projectId: 'projectId',
sessionId: 'sessionId',
inputId: 'inputId',
properties: {
state: 'state',
mode: 'mode',
userType: 'user userType',
channel: 'channel',
flowLanguage: 'new flowLanguage',
intent: 'new intent',
intentFlow: 'new intentFlow',
intentScore: 0,
flowName: 'new flowName',
inHandoverRequest: false,
inHandoverConversation: false,
localeName: 'new localeName',
rating: 9,
ratingComment: 'new ratingComment',
entrypointType: 'new entrypointType',
endpointName: 'new endpointName',
endpointUrlToken: 'new endpointUrlToken',
handoverEscalations: 2,
snapshotName: 'new snapshotName',
slots: 'new slots',
custom1: 'new custom1',
custom2: 'new custom2',
custom3: 'new custom3',
custom4: 'new custom4',
custom5: 'new custom5',
custom6: 'new custom6',
custom7: 'new custom7',
custom8: 'new custom8',
custom9: 'new custom9',
custom10: 'new custom10'
}
})
};
fetch('https://api-trial.cognigy.ai/new/v2.0/analytics', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-trial.cognigy.ai/new/v2.0/analytics",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'contactId' => 'contactId',
'projectId' => 'projectId',
'sessionId' => 'sessionId',
'inputId' => 'inputId',
'properties' => [
'state' => 'state',
'mode' => 'mode',
'userType' => 'user userType',
'channel' => 'channel',
'flowLanguage' => 'new flowLanguage',
'intent' => 'new intent',
'intentFlow' => 'new intentFlow',
'intentScore' => 0,
'flowName' => 'new flowName',
'inHandoverRequest' => false,
'inHandoverConversation' => false,
'localeName' => 'new localeName',
'rating' => 9,
'ratingComment' => 'new ratingComment',
'entrypointType' => 'new entrypointType',
'endpointName' => 'new endpointName',
'endpointUrlToken' => 'new endpointUrlToken',
'handoverEscalations' => 2,
'snapshotName' => 'new snapshotName',
'slots' => 'new slots',
'custom1' => 'new custom1',
'custom2' => 'new custom2',
'custom3' => 'new custom3',
'custom4' => 'new custom4',
'custom5' => 'new custom5',
'custom6' => 'new custom6',
'custom7' => 'new custom7',
'custom8' => 'new custom8',
'custom9' => 'new custom9',
'custom10' => 'new custom10'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-trial.cognigy.ai/new/v2.0/analytics"
payload := strings.NewReader("{\n \"contactId\": \"contactId\",\n \"projectId\": \"projectId\",\n \"sessionId\": \"sessionId\",\n \"inputId\": \"inputId\",\n \"properties\": {\n \"state\": \"state\",\n \"mode\": \"mode\",\n \"userType\": \"user userType\",\n \"channel\": \"channel\",\n \"flowLanguage\": \"new flowLanguage\",\n \"intent\": \"new intent\",\n \"intentFlow\": \"new intentFlow\",\n \"intentScore\": 0,\n \"flowName\": \"new flowName\",\n \"inHandoverRequest\": false,\n \"inHandoverConversation\": false,\n \"localeName\": \"new localeName\",\n \"rating\": 9,\n \"ratingComment\": \"new ratingComment\",\n \"entrypointType\": \"new entrypointType\",\n \"endpointName\": \"new endpointName\",\n \"endpointUrlToken\": \"new endpointUrlToken\",\n \"handoverEscalations\": 2,\n \"snapshotName\": \"new snapshotName\",\n \"slots\": \"new slots\",\n \"custom1\": \"new custom1\",\n \"custom2\": \"new custom2\",\n \"custom3\": \"new custom3\",\n \"custom4\": \"new custom4\",\n \"custom5\": \"new custom5\",\n \"custom6\": \"new custom6\",\n \"custom7\": \"new custom7\",\n \"custom8\": \"new custom8\",\n \"custom9\": \"new custom9\",\n \"custom10\": \"new custom10\"\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api-trial.cognigy.ai/new/v2.0/analytics")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"contactId\": \"contactId\",\n \"projectId\": \"projectId\",\n \"sessionId\": \"sessionId\",\n \"inputId\": \"inputId\",\n \"properties\": {\n \"state\": \"state\",\n \"mode\": \"mode\",\n \"userType\": \"user userType\",\n \"channel\": \"channel\",\n \"flowLanguage\": \"new flowLanguage\",\n \"intent\": \"new intent\",\n \"intentFlow\": \"new intentFlow\",\n \"intentScore\": 0,\n \"flowName\": \"new flowName\",\n \"inHandoverRequest\": false,\n \"inHandoverConversation\": false,\n \"localeName\": \"new localeName\",\n \"rating\": 9,\n \"ratingComment\": \"new ratingComment\",\n \"entrypointType\": \"new entrypointType\",\n \"endpointName\": \"new endpointName\",\n \"endpointUrlToken\": \"new endpointUrlToken\",\n \"handoverEscalations\": 2,\n \"snapshotName\": \"new snapshotName\",\n \"slots\": \"new slots\",\n \"custom1\": \"new custom1\",\n \"custom2\": \"new custom2\",\n \"custom3\": \"new custom3\",\n \"custom4\": \"new custom4\",\n \"custom5\": \"new custom5\",\n \"custom6\": \"new custom6\",\n \"custom7\": \"new custom7\",\n \"custom8\": \"new custom8\",\n \"custom9\": \"new custom9\",\n \"custom10\": \"new custom10\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-trial.cognigy.ai/new/v2.0/analytics")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"contactId\": \"contactId\",\n \"projectId\": \"projectId\",\n \"sessionId\": \"sessionId\",\n \"inputId\": \"inputId\",\n \"properties\": {\n \"state\": \"state\",\n \"mode\": \"mode\",\n \"userType\": \"user userType\",\n \"channel\": \"channel\",\n \"flowLanguage\": \"new flowLanguage\",\n \"intent\": \"new intent\",\n \"intentFlow\": \"new intentFlow\",\n \"intentScore\": 0,\n \"flowName\": \"new flowName\",\n \"inHandoverRequest\": false,\n \"inHandoverConversation\": false,\n \"localeName\": \"new localeName\",\n \"rating\": 9,\n \"ratingComment\": \"new ratingComment\",\n \"entrypointType\": \"new entrypointType\",\n \"endpointName\": \"new endpointName\",\n \"endpointUrlToken\": \"new endpointUrlToken\",\n \"handoverEscalations\": 2,\n \"snapshotName\": \"new snapshotName\",\n \"slots\": \"new slots\",\n \"custom1\": \"new custom1\",\n \"custom2\": \"new custom2\",\n \"custom3\": \"new custom3\",\n \"custom4\": \"new custom4\",\n \"custom5\": \"new custom5\",\n \"custom6\": \"new custom6\",\n \"custom7\": \"new custom7\",\n \"custom8\": \"new custom8\",\n \"custom9\": \"new custom9\",\n \"custom10\": \"new custom10\"\n }\n}"
response = http.request(request)
puts response.read_body{
"type": "Bad Request",
"title": "Bad Request Error",
"status": 400,
"detail": "Validation failed. Missing payload.",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Unauthorized",
"title": "Unauthorized Error",
"status": 401,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 401,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Payment Required",
"title": "Payment Required Error",
"status": 402,
"detail": "Validation failed. Missing payload.",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 402,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Forbidden",
"title": "Forbidden Error",
"status": 403,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Not Found",
"title": "Not Found Error",
"status": 404,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {},
"logLevel": "error"
}{
"type": "Method Not Allowed",
"title": "Method Not Allowed Error",
"status": 405,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Conflict",
"title": "Conflict Error",
"status": 409,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1004,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Payload Too Large",
"title": "Payload Too Large Error",
"status": 413,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Internal Server Error",
"title": "Internal Server Error",
"status": 500,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Not Implemented",
"title": "Not Implemented Error",
"status": 501,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1009,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Bad Gateway",
"title": "Bad Gateway Error",
"status": 502,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Service Unavailable",
"title": "Service Unavailable Error",
"status": 503,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 503,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Gateway Timeout",
"title": "Gateway Timeout Error",
"status": 504,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}Authorizations
APIKeyHeaderAPIKeyQueryParamCXoneTokenHeaderOAuth2
Supply the API Key in the HTTP-Header
Headers
The Accept header specifies the media type that the client expects in the response. Available options: application/json, application/hal+json, application/xml, text/xml, text/csv. The default value is application/json.
Available options:
application/json, application/hal+json, application/xml, text/xml, text/csv Body
application/json
Response
Successfully updated the Analytics Record
Last modified on July 22, 2026
⌘I
Update an Analytics Record
curl --request PATCH \
--url https://api-trial.cognigy.ai/new/v2.0/analytics \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"contactId": "contactId",
"projectId": "projectId",
"sessionId": "sessionId",
"inputId": "inputId",
"properties": {
"state": "state",
"mode": "mode",
"userType": "user userType",
"channel": "channel",
"flowLanguage": "new flowLanguage",
"intent": "new intent",
"intentFlow": "new intentFlow",
"intentScore": 0,
"flowName": "new flowName",
"inHandoverRequest": false,
"inHandoverConversation": false,
"localeName": "new localeName",
"rating": 9,
"ratingComment": "new ratingComment",
"entrypointType": "new entrypointType",
"endpointName": "new endpointName",
"endpointUrlToken": "new endpointUrlToken",
"handoverEscalations": 2,
"snapshotName": "new snapshotName",
"slots": "new slots",
"custom1": "new custom1",
"custom2": "new custom2",
"custom3": "new custom3",
"custom4": "new custom4",
"custom5": "new custom5",
"custom6": "new custom6",
"custom7": "new custom7",
"custom8": "new custom8",
"custom9": "new custom9",
"custom10": "new custom10"
}
}
'import requests
url = "https://api-trial.cognigy.ai/new/v2.0/analytics"
payload = {
"contactId": "contactId",
"projectId": "projectId",
"sessionId": "sessionId",
"inputId": "inputId",
"properties": {
"state": "state",
"mode": "mode",
"userType": "user userType",
"channel": "channel",
"flowLanguage": "new flowLanguage",
"intent": "new intent",
"intentFlow": "new intentFlow",
"intentScore": 0,
"flowName": "new flowName",
"inHandoverRequest": False,
"inHandoverConversation": False,
"localeName": "new localeName",
"rating": 9,
"ratingComment": "new ratingComment",
"entrypointType": "new entrypointType",
"endpointName": "new endpointName",
"endpointUrlToken": "new endpointUrlToken",
"handoverEscalations": 2,
"snapshotName": "new snapshotName",
"slots": "new slots",
"custom1": "new custom1",
"custom2": "new custom2",
"custom3": "new custom3",
"custom4": "new custom4",
"custom5": "new custom5",
"custom6": "new custom6",
"custom7": "new custom7",
"custom8": "new custom8",
"custom9": "new custom9",
"custom10": "new custom10"
}
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
contactId: 'contactId',
projectId: 'projectId',
sessionId: 'sessionId',
inputId: 'inputId',
properties: {
state: 'state',
mode: 'mode',
userType: 'user userType',
channel: 'channel',
flowLanguage: 'new flowLanguage',
intent: 'new intent',
intentFlow: 'new intentFlow',
intentScore: 0,
flowName: 'new flowName',
inHandoverRequest: false,
inHandoverConversation: false,
localeName: 'new localeName',
rating: 9,
ratingComment: 'new ratingComment',
entrypointType: 'new entrypointType',
endpointName: 'new endpointName',
endpointUrlToken: 'new endpointUrlToken',
handoverEscalations: 2,
snapshotName: 'new snapshotName',
slots: 'new slots',
custom1: 'new custom1',
custom2: 'new custom2',
custom3: 'new custom3',
custom4: 'new custom4',
custom5: 'new custom5',
custom6: 'new custom6',
custom7: 'new custom7',
custom8: 'new custom8',
custom9: 'new custom9',
custom10: 'new custom10'
}
})
};
fetch('https://api-trial.cognigy.ai/new/v2.0/analytics', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-trial.cognigy.ai/new/v2.0/analytics",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'contactId' => 'contactId',
'projectId' => 'projectId',
'sessionId' => 'sessionId',
'inputId' => 'inputId',
'properties' => [
'state' => 'state',
'mode' => 'mode',
'userType' => 'user userType',
'channel' => 'channel',
'flowLanguage' => 'new flowLanguage',
'intent' => 'new intent',
'intentFlow' => 'new intentFlow',
'intentScore' => 0,
'flowName' => 'new flowName',
'inHandoverRequest' => false,
'inHandoverConversation' => false,
'localeName' => 'new localeName',
'rating' => 9,
'ratingComment' => 'new ratingComment',
'entrypointType' => 'new entrypointType',
'endpointName' => 'new endpointName',
'endpointUrlToken' => 'new endpointUrlToken',
'handoverEscalations' => 2,
'snapshotName' => 'new snapshotName',
'slots' => 'new slots',
'custom1' => 'new custom1',
'custom2' => 'new custom2',
'custom3' => 'new custom3',
'custom4' => 'new custom4',
'custom5' => 'new custom5',
'custom6' => 'new custom6',
'custom7' => 'new custom7',
'custom8' => 'new custom8',
'custom9' => 'new custom9',
'custom10' => 'new custom10'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-trial.cognigy.ai/new/v2.0/analytics"
payload := strings.NewReader("{\n \"contactId\": \"contactId\",\n \"projectId\": \"projectId\",\n \"sessionId\": \"sessionId\",\n \"inputId\": \"inputId\",\n \"properties\": {\n \"state\": \"state\",\n \"mode\": \"mode\",\n \"userType\": \"user userType\",\n \"channel\": \"channel\",\n \"flowLanguage\": \"new flowLanguage\",\n \"intent\": \"new intent\",\n \"intentFlow\": \"new intentFlow\",\n \"intentScore\": 0,\n \"flowName\": \"new flowName\",\n \"inHandoverRequest\": false,\n \"inHandoverConversation\": false,\n \"localeName\": \"new localeName\",\n \"rating\": 9,\n \"ratingComment\": \"new ratingComment\",\n \"entrypointType\": \"new entrypointType\",\n \"endpointName\": \"new endpointName\",\n \"endpointUrlToken\": \"new endpointUrlToken\",\n \"handoverEscalations\": 2,\n \"snapshotName\": \"new snapshotName\",\n \"slots\": \"new slots\",\n \"custom1\": \"new custom1\",\n \"custom2\": \"new custom2\",\n \"custom3\": \"new custom3\",\n \"custom4\": \"new custom4\",\n \"custom5\": \"new custom5\",\n \"custom6\": \"new custom6\",\n \"custom7\": \"new custom7\",\n \"custom8\": \"new custom8\",\n \"custom9\": \"new custom9\",\n \"custom10\": \"new custom10\"\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api-trial.cognigy.ai/new/v2.0/analytics")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"contactId\": \"contactId\",\n \"projectId\": \"projectId\",\n \"sessionId\": \"sessionId\",\n \"inputId\": \"inputId\",\n \"properties\": {\n \"state\": \"state\",\n \"mode\": \"mode\",\n \"userType\": \"user userType\",\n \"channel\": \"channel\",\n \"flowLanguage\": \"new flowLanguage\",\n \"intent\": \"new intent\",\n \"intentFlow\": \"new intentFlow\",\n \"intentScore\": 0,\n \"flowName\": \"new flowName\",\n \"inHandoverRequest\": false,\n \"inHandoverConversation\": false,\n \"localeName\": \"new localeName\",\n \"rating\": 9,\n \"ratingComment\": \"new ratingComment\",\n \"entrypointType\": \"new entrypointType\",\n \"endpointName\": \"new endpointName\",\n \"endpointUrlToken\": \"new endpointUrlToken\",\n \"handoverEscalations\": 2,\n \"snapshotName\": \"new snapshotName\",\n \"slots\": \"new slots\",\n \"custom1\": \"new custom1\",\n \"custom2\": \"new custom2\",\n \"custom3\": \"new custom3\",\n \"custom4\": \"new custom4\",\n \"custom5\": \"new custom5\",\n \"custom6\": \"new custom6\",\n \"custom7\": \"new custom7\",\n \"custom8\": \"new custom8\",\n \"custom9\": \"new custom9\",\n \"custom10\": \"new custom10\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-trial.cognigy.ai/new/v2.0/analytics")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"contactId\": \"contactId\",\n \"projectId\": \"projectId\",\n \"sessionId\": \"sessionId\",\n \"inputId\": \"inputId\",\n \"properties\": {\n \"state\": \"state\",\n \"mode\": \"mode\",\n \"userType\": \"user userType\",\n \"channel\": \"channel\",\n \"flowLanguage\": \"new flowLanguage\",\n \"intent\": \"new intent\",\n \"intentFlow\": \"new intentFlow\",\n \"intentScore\": 0,\n \"flowName\": \"new flowName\",\n \"inHandoverRequest\": false,\n \"inHandoverConversation\": false,\n \"localeName\": \"new localeName\",\n \"rating\": 9,\n \"ratingComment\": \"new ratingComment\",\n \"entrypointType\": \"new entrypointType\",\n \"endpointName\": \"new endpointName\",\n \"endpointUrlToken\": \"new endpointUrlToken\",\n \"handoverEscalations\": 2,\n \"snapshotName\": \"new snapshotName\",\n \"slots\": \"new slots\",\n \"custom1\": \"new custom1\",\n \"custom2\": \"new custom2\",\n \"custom3\": \"new custom3\",\n \"custom4\": \"new custom4\",\n \"custom5\": \"new custom5\",\n \"custom6\": \"new custom6\",\n \"custom7\": \"new custom7\",\n \"custom8\": \"new custom8\",\n \"custom9\": \"new custom9\",\n \"custom10\": \"new custom10\"\n }\n}"
response = http.request(request)
puts response.read_body{
"type": "Bad Request",
"title": "Bad Request Error",
"status": 400,
"detail": "Validation failed. Missing payload.",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Unauthorized",
"title": "Unauthorized Error",
"status": 401,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 401,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Payment Required",
"title": "Payment Required Error",
"status": 402,
"detail": "Validation failed. Missing payload.",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 402,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Forbidden",
"title": "Forbidden Error",
"status": 403,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Not Found",
"title": "Not Found Error",
"status": 404,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {},
"logLevel": "error"
}{
"type": "Method Not Allowed",
"title": "Method Not Allowed Error",
"status": 405,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Conflict",
"title": "Conflict Error",
"status": 409,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1004,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Payload Too Large",
"title": "Payload Too Large Error",
"status": 413,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Internal Server Error",
"title": "Internal Server Error",
"status": 500,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Not Implemented",
"title": "Not Implemented Error",
"status": 501,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1009,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Bad Gateway",
"title": "Bad Gateway Error",
"status": 502,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Service Unavailable",
"title": "Service Unavailable Error",
"status": 503,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 503,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}{
"type": "Gateway Timeout",
"title": "Gateway Timeout Error",
"status": 504,
"detail": "<string>",
"instance": "/v2.0/flows/5ce7c2d833ea1e04d7e6c432",
"code": 1000,
"traceId": "api--f84324f4-98eb-4f02-abdd-375a2e6c3c1f",
"details": {}
}