Skip to main content
GET
/
test_framework
/
v1
/
test-profiles
cURL
curl --request GET \
  --url https://api.cekura.ai/test_framework/v1/test-profiles/ \
  --header 'X-CEKURA-API-KEY: <api-key>'
[
  {
    "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.

Query Parameters

agent_id
integer
required

ID of the agent

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]",
}