Public
Documentation Settings

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

tR9IGIErwJWQtJuHOJR88ms2MGdce4J3==

PARAMS
accountId

b0232c03-b39b-4676-b61e-c6e05e6c1904

Unique identifier for your PowerTester account

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

tR9IGIErwJWQtJuHOJR88ms2MGdce4J3==

PARAMS
accountId

b0232c03-b39b-4676-b61e-c6e05e6c1904

Unique identifier for your PowerTester account

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

tR9IGIErwJWQtJuHOJR88ms2MGdce4J3==

API key for your account

PARAMS
accountId

b0232c03-b39b-4676-b61e-c6e05e6c1904

Unique identifier for your PowerTester account

PATH VARIABLES
testplanId

b93e4b97-ddb6-408e-9216-a2a46802b393

Unique identifier for the test plan

testrunId

82c759e0-352b-4f3a-ac82-0961e1b51e79

Unique identifier for the test run

Loading