Skip to main content
POST
/
test_framework
/
v1
/
test-profiles
cURL
curl --request POST \
  --url https://api.cekura.ai/test_framework/v1/test-profiles/ \
  --header 'Content-Type: application/json' \
  --header 'X-CEKURA-API-KEY: <api-key>' \
  --data '
{
  "name": "<string>",
  "agent": 123,
  "project": 123,
  "information": {}
}
'
{
  "id": 123,
  "project": 456,
  "agent": null,
  "name": "<string>",
  "information": {
    "user_name": "John Doe",
    "user_email": "john.doe@example.com"
  }
}

Authorizations

X-CEKURA-API-KEY
string
header
required

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

Body

name
string
required

Name of the test profile

agent
integer | null

ID of the agent. Either agent or project must be provided.

project
integer | null

ID of the project. Either agent or project must be provided.

information
object

Information fields of the test profile

Response

id
integer
project
integer | null
agent
integer | null
name
string
Maximum string length: 255
information
object

Information fields for the test profile Example:

{
"user_name": "John Doe",
"user_email": "john.doe@example.com",
}