**Plants** ================ **Create a Plant** ++++++++++++++++++++ .. http:post:: /_config/plants/ **Description** This is used for creating new plant. **HTTP Method** POST **Endpoint:** ``/_config/plants/`` **Request Header** ``Authorization`` `Basic ` **Request Parameters** Body Parameters - ``plant_name`` (string, *required*): The name of the plant to be created. - ``site_id`` (string, *required*): The ID of the site to which this plant belongs. **Sample Request** .. code-block:: sh curl --location 'https://app.4pointx.com/_config/plants' \ --header 'Content-Type: application/json' \ --header 'Authorization: Basic ' \ --data ' {"plant_name":"test-plant-test1", "site_id":"d2e66edd-f13f-4d00-a7b5-8cab9ef4488d"} ' **Sample Response** Success .. sourcecode:: json { "id": "b33ad9e3-d5ba-4083-a05d-d378851f5b51" } Error .. sourcecode:: json { "error": { "status": 401, "message": "Unauthorized access to module by general-user" } } .. sourcecode:: json { "error": { "status": 400, "message": "Invalid Content Type" } } .. sourcecode:: json { "error": { "status": 400, "message": "Insufficient Inputs" } } .. sourcecode:: json { "error": { "status": 400, "message": "Invalid Site Id" } } .. sourcecode:: json { "error": { "status": 400, "message": "Plant Name Should Be Unique" } } **Delete a Plant** ++++++++++++++++++++ .. http:delete:: /_config/plants/ **Description** Delete a specific plant by providing its ID. **HTTP Method** DELETE **Endpoint** ``/_config/plants/`` **Request Header** ``Authorization`` `Basic ` **Request Parameters** URL Parameters - ``plant_id`` (string, *required*) The ID of the plant to delete. **Sample Request** .. code-block:: sh curl --location --request DELETE 'https://app.4pointx.com/_config/plants/b33ad9e3-d5ba-4083-a05d-d378851f5b51' \ --header 'Authorization: Basic ' \ **Sample Response** Success .. sourcecode:: text "Plant deleted" Error .. sourcecode:: json { "error": { "status": 401, "message": "Unauthorized access to module by general-user" } } .. sourcecode:: json { "error": { "status": 400, "message": "Events exist for b33ad9e3-d5ba-4083-a05d-d378851f5b51" } } .. sourcecode:: json { "error": { "status": 400, "message": "Pipelines exist for b33ad9e3-d5ba-4083-a05d-d378851f5b51" } } .. sourcecode:: json { "error": { "status": 400, "message": "Assets exist for b33ad9e3-d5ba-4083-a05d-d378851f5b51" } } .. sourcecode:: json { "error": { "status": 400, "message": "Functions exists on the plant" } } **Update Plant** +++++++++++++++++++++ .. http:put:: /_config/plants/ **Description** Update the details of a specific plant by providing its ID. **HTTP Method** PUT **Endpoint** ``/_config/plants/`` **Request Header** ``Authorization`` `Basic ` **Request Parameters** Body Parameters - ``plant_name`` (string, *required*): The updated name of the plant. - ``site_id`` (string, *required*): The ID of the site to which this plant belongs. URL Parameters - ``plant_id`` (string, *required*) The ID of the plant to update. **Sample Request** .. code-block:: sh curl --location --request PUT 'https://app.4pointx.com/_config/plants/b33ad9e3-d5ba-4083-a05d-d378851f5b51' \ --header 'Content-Type: application/json' \ --header 'Authorization: Basic ' \ --data ' {"plant_name":"test-plant-1sep-mod", "site_id":"d2e66edd-f13f-4d00-a7b5-8cab9ef4488d"} ' **Sample Response** Success .. sourcecode:: json "Plant Updated" Error .. sourcecode:: json { "error": { "status": 401, "message": "Unauthorized access to module by general-user" } } .. sourcecode:: json { "error": { "status": 400, "message": "Invalid Content Type" } } .. sourcecode:: json { "error": { "status": 400, "message": "Insufficient Inputs" } } .. sourcecode:: json { "error": { "status": 400, "message": "Invalid Plant" } } .. sourcecode:: json { "error": { "status": 400, "message": "Plant Name Should Be Unique" } } **Fetch Plant** +++++++++++++++++++++ .. http:get:: /_config/plants/ **Description** Retrieve details about a specific plant by providing its ID. **HTTP Method** GET **Endpoint** ``/_config/plants/`` **Request Header** ``Authorization`` `Basic ` **Request Parameters** URL Parameters - ``plant_id`` (string, *required*): The ID of the plant to retrieve details for. **Sample Request** .. code-block:: sh curl --location 'http://app.4pointx.com/_config/plants/b33ad9e3-d5ba-4083-a05d-d378851f5b51' \ --header 'Authorization: Basic ' **Sample Response** Success .. code-block:: json { "plant_id": "b33ad9e3-d5ba-4083-a05d-d378851f5b51", "plant_name": "test-plant-1sep-test1", "site_id": "d2e66edd-f13f-4d00-a7b5-8cab9ef4488d", "site_name": "Demo Site" } Error .. sourcecode:: json { "error": { "status": 401, "message": "Unauthorized access to module by general-user" } } .. sourcecode:: json { "error": { "status": 400, "message": "Invalid Plant for 5476481-48e5-b2a0-ae810a948839" } } .. sourcecode:: json { "error": { "status": 405, "message": "Method Not Allowed" } } **Fetch List of Plants** +++++++++++++++++++++++++++++ .. http:GET:: /_config/plants/_list **Description** Retrieve a list of plants associated with a specific site. **HTTP Method** GET **Endpoint** ``/_config/plants/_list`` **Request Header** ``Authorization`` `Basic ` **Request Parameters** Query Parameters - ``site_id`` (string, *required*): The ID of the site for which you want to list plants. **Sample Request** .. code-block:: sh curl --location 'https://app.4pointx.com/_config/plants/_list?site_id=d2e66edd-f13f-4d00-a7b5-8cab9ef4488d' \ --header 'Authorization: Basic ' \ --data '' **Sample Response** Success .. code-block:: json [ { "plant_id": "e29ae75e-dd88-45ef-90cb-cefb3807af70", "plant_name": "Demo Plant", "site_id": "d2e66edd-f13f-4d00-a7b5-8cab9ef4488d", "site_name": "Demo Site", "function_count": 3, "pipeline_count": 10 }, { "plant_id": "bbdc76c9-6551-4cb2-b257-816a7ef172de", "plant_name": "teswt", "site_id": "d2e66edd-f13f-4d00-a7b5-8cab9ef4488d", "site_name": "Demo Site", "function_count": 0, "pipeline_count": 0 } ] Error .. sourcecode:: json { "error": { "status": 401, "message": "Unauthorized access to module by general-user" } } .. sourcecode:: json { "error": { "status": 400, "message": "Insufficient Inputs" } }