Getting Execution Status by Migration Plan Name, Resource Name, and Operation

You can get execution status by migration plan name, resource name, and operation for your migration by sending an HTTP GET request to the Siebel Migration Application.

The following details are for a request to get execution status by migration plan name, resource name, and operation for a migration:

  • URI: https://{hostname}:{port}/siebel/v1.0/migration/execution/{planName}/{resourceName}/{operation}

  • HTTP Method: GET

  • Content-Type: application/json

  • Authorization: Basic

  • Request Body: None

The following are the details for the response to a successful request:

  • HTTP Code: 200

  • Content-Type: application/json

  • Response Body:
    {  
       "id":"88-1V5WPF",
       "planName":"Test REST Execution",
       "description":"Test REST Execution",
       "status":"Running",
       "startDate":"2018-07-17 04:33:54",
       "endDate":"",
       "source":"Dev",
       "target":"Prod",
       "packageName":"",
       "resources":[  
          {  
             "id":"88-1V5WPI",
             "name":"Incremental Runtime Repository Data Service",
             "operation":"Export",
             "sequenceNumber":"3",
             "mode":"Asynchronous",
             "status":"Running",
             "startTime":"2018-07-17 04:33:55",
             "endTime":"",
             "resourceType":""
          }
       ]
    }