- Print
- DarkLight
Release notes - January 8th 2025
Article summary
Did you find this summary helpful?
Thank you for your feedback
Updates ✨
Improvements
- We have made improvements to the public Scenario API and the Test Results API.
Scenario list and Scenario detail
Addedauthor
andupdater
fields
Scenario update APIcurl https://app.autify.com/api/v1/projects/12205/scenarios/330975 -H 'Authorization: Bearer <token>' ... ... "author": { "id": 22847, "username": "admin" }, "updater": { "id": 22847, "username": "admin" } ... ...
Updatename
,description
andlabels
Scenario duplication APIcurl https://app.autify.com/api/v1/projects/12205/scenarios/335122 -H 'Authorization: Bearer <token>' -X PUT -d '{"name": "New scenario 2025", "description": "This is a new scenario update for 2025", "labels": ["2025"]}' -H 'content-type:application/json' { ... "name": "New scenario 2025", "description": "This is a new scenario update for 2025", ... ... "labels": [ { "id": 10287, "name": "2025", "color": "gray", "created_at": "2025-01-07T06:12:34.676Z", "updated_at": "2025-01-07T06:12:34.676Z" } ] }
Duplicate a scenario
Test Results APIcurl https://app.autify.com/api/v1/projects/12205/scenarios/330975/duplications -H 'Authorization: Bearer <token>' -X POST { "id": 335182, "name": "[Copy] Autify Regression Test", ... ... }
Addeddiff
field on stepscurl https://app.autify.com/api/v1/projects/12205/results/4096362\?get_details\=true -H 'Authorization: Bearer <token>' { "id": 4096362, ... "test_plan_capability_results": [ ... "test_case_results": [ { ... "steps": [ { ... "diff": 0.03906956214689265 }, { ... "diff": 0.000356638418079096 }, { ... "diff": 0 } ], ... ... }
- We have updated the public API documentation by removing unnecessary fields.
Was this article helpful?