Deleting an Open Integration Deployment

You can delete an existing Open Integration deployment using the /openintegration API:

  • Method: DELETE
  • Endpoint: /openintegration/<deploy_id>
  • Description: Helps you to delete an Open Integration deployment.
  • Sample API call request:
    DELETE https://<SCM_instance_IP>:<port_num>/scm/api/v1.0/openintegration/<deploy_id>
    Authorization: Basic Auth

    In the example above, <deploy_id> is the ID of the deployment that you want to delete.

  • Sample API call response:
    {
       "data": {
          "archive_dir": "/home/opc/siebel/microservices/siebel_openint/archive/H417J9",
          "deleted": true,
          "deploy_id": "H417J9"
       },
       "message": "Deletion of deploy_id H417J9 of siebel_openint successfull",
       "status": "success"
    }