Skip to main content
GET
/
api
/
agents
/
{id}
/
test-prompts
Get test prompts
curl --request GET \
  --url https://rippletide-backend.azurewebsites.net/api/agents/{id}/test-prompts
[
  {
    "id": 123,
    "prompt": "<string>",
    "expectedAnswer": "<string>",
    "testAnswer": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Path Parameters

id
string<uuid>
required

Response

200 - application/json

List of test prompts

id
integer
prompt
string
expectedAnswer
string | null
testAnswer
string | null
created_at
string<date-time>
updated_at
string<date-time>