cURL
curl --request GET \ --url https://app.tryiris.dev/api/trpc/test.findFirst \ --header 'IRIS_ACCESS_TOKEN: <iris_access_token>'
{ "id": "<string>", "name": "<string>", "description": "<string>", "url": "<string>", "naturalLanguageInput": "<string>", "status": "<string>", "isActive": true, "projectId": "<string>", "createdById": "<string>", "createdAt": "<string>", "updatedAt": "<string>", "project": { "id": "<string>", "name": "<string>", "description": "<string>", "cookies": {}, "session": {}, "localStorage": {} }, "createdBy": { "id": "<string>", "name": "<string>", "email": "<string>", "pictureUrl": "<string>", "status": "<string>", "globalRole": "<string>" } }
Retrieve details of a specific test by ID
Show Input Object Properties
Show Project Properties
Show Creator Properties
curl 'https://app.tryiris.dev/api/trpc/test.findFirst?batch=1&input={"where":{"id":"c5147ecb-22d0-4704-9a30-932ebf28302f"},"include":{"project":true,"createdBy":true}}' \ -H 'Authorization: Bearer <your-iris-token>' \ -X GET