REST API for Master Suite
The following shows a request to create a Master Suite record, returning Row id.
URL: https://ServerName:Port/siebel/<Version>/data/Automation Master Suite/Automation Master Suite
HTTP Method: POST
Content type: application/json
Authorization: Basic
Request body:
{
"Name": "Test_Mastersuite",
"Status": "Active",
"Description": "New Msuite",
"Test Env": "Test",
"Release": "IP2017",
"Team Name": "Falcons"
}
Response to a successful request:
{
"Id": "88-1WCICN"
}
The following shows a request to insert a test set record into a Master Suite.
https://ServerName:Port/siebel/<Version>/data/Automation Master Suite/Automation Master Suite/88-1WCICN/Automation Test Set Child
HTTP Method: PUT
Content type: application/json
Authorization: Basic
Request body:
{
"Id":"123",
"Sequence": "1",
"Name": "Test_Set",
"Skip": "N"
}
Response to a successful request:
{
"Id": "88-1WCICX"
}