Skip to main content
PATCH
/
test_framework
/
v1
/
test-profiles
/
{id}
cURL
curl --request PATCH \
  --url https://api.cekura.ai/test_framework/v1/test-profiles/{id}/ \
  --header 'Content-Type: application/json' \
  --header 'X-CEKURA-API-KEY: <api-key>' \
  --data '
{
  "name": "<string>",
  "information": {
    "user_name": "<string>",
    "user_email": "<string>"
  }
}
'
{
  "id": 123,
  "agent": 123,
  "name": "<string>",
  "information": {
    "user_name": "<string>",
    "user_email": "<string>"
  }
}

Authorizations

X-CEKURA-API-KEY
string
header
required

API Key Authentication. It should be included in the header of each request.

Path Parameters

id
integer
required

A unique integer value identifying this ai agent test profile.

Body

agent
integer

ID of the agent

name
string

Name of the test profile

information
object

Information fields of the test profile

Response

200 - application/json
id
integer
agent
integer
name
string
Maximum string length: 255
information
object

Information fields for the test profile Example:

{
"user_name": "John Doe",
"user_email": "[email protected]",
}