Create

The Create method allows you to create one or more Workspaces.

  • URI: https://ServerName:port/siebel/v1.0/wsoperation/Create
  • HTTP Method: POST
  • Content-Type: application/json
  • Authorization: Basic
  • Request Body:
    • For Single Workspace creation

      {
        "Build Branch Flag" : "Y/N"
        "Name" : "wsname"
        "Parent Name" : "Parentwsname"
        "Parent Version" : "version number/LATEST"
        "Comments" : "string"
      }
      
    • For Multiple Workspace creation

      {
          "workspaces": [
              {
                  "Build Branch Flag": "Y",
                  "Name": "int_october_2026",
                  "Parent Name": "MAIN",
                  "Parent Version": "LATEST",
                  "Comments": "October release"
              },
              {
                  "Build Branch Flag": "N",
                  "Name": "dev_sadmin_feature_mno",
                  "Parent Name": "int_october_2026",
                  "Parent Version": "LATEST",
                  "Comments": "Feature A"
              },
              {
                  "Build Branch Flag": "N",
                  "Name": "dev_sadmin_feature_pqr",
                  "Parent Name": "int_october_2026",
                  "Parent Version": "LATEST",
                  "Comments": "Feature B"
              }
          ]
      }
      
    Note: Comments must be between 3 and 250 characters.
    Note: Workspace Names cannot be longer than 75 characters.
Response details
  • HTTP Code: 200
  • Content-Type: application/json
  • Response Body:
    {
        "Name": "dev_sadmin_263",
        "Status": "Created",
        "Id": "88-46JMNZ",
        "Parent Name": "MAIN",
        "Parent Version": "4"
    }