PT API
PowerTester REST API provides service endpoints for administration of test plans & test runs
Authentication
All API's require an API key and an account Id. These act as a username and password. In order to use the API you must contact support@powertester.app and request API authentication.
CICD Pipelines
For code examples of the API's working in a CICD pipeline view our public repo https://dev.azure.com/WildDataSolutions/PowerTester%20Public/_git/api-scripts
GETGetTestPlans
https://pt-api-01.azurewebsites.net/api/testplans/?accountId=b0232c03-b39b-4676-b61e-c6e05e6c1904
Returns a list of test plans for specified account.
HEADERS
x-functions-key
PARAMS
accountId
GETGetConnections
https://pt-api-01.azurewebsites.net/api/connections/?accountId=b0232c03-b39b-4676-b61e-c6e05e6c1904
Returns a list of test plans for specified account.
HEADERS
x-functions-key
PARAMS
accountId
GETGetTestRunResult
https://pt-api-01.azurewebsites.net/api/testplans/:testplanId/testruns/:testrunId/results?accountId=b0232c03-b39b-4676-b61e-c6e05e6c1904
Returns test case results of test run in jUnit XML format
HEADERS
x-functions-key
PARAMS
accountId
PATH VARIABLES
testplanId
testrunId
Loading