REST API for Test Script
The following shows a request to create a a test script record.
URL: https://ServerName:Port/siebel/<Version>/data/Automation Test Script/Automation Test Script
HTTP Method: POST
Content type: application/json
Authorization: Basic
Request body:
{
"Name": "Test_Script1",
"Status": "Active",
"Description": "Script1",
"Test Env": "Test",
"DataSet Name": "Test_DataSet1"
}
Response to a successful request:
{
"Id": "88-1WCIB5"
}
The following shows a request to query a test step record.
URL: https://ServerName:Port/siebel/<Version>/data/Automation Test Script/Automation Test Script/88-1WCIB5/Automation Test Step Child
HTTP Method: GET
Content type: application/json
Authorization: Basic
Response to a successful request:
{
"Id": "88-1WCIB8"
}
Note: Only the Get method is supported for test steps.