Public
Documentation Settings

EIM_AND_JIRA_SIM

These are APIS which will help Extract data , Update data , Insert data in EIM Portal through NodeJS backend

Hosted NodeJs Backend : https://eim-and-jira-sim-back.vercel.app
Github Repo Link : https://github.com/Adidem23/EIM_AND_JIRA_SIM

POSTInserting_Records

https://eim-and-jira-sim-back.vercel.app/AddRecord

This is API Requet which will add data entry in Mongodb Atlas Backend with JSON Body

Bodyraw (json)
json
{
   "appID":131003,
    "issueID":131020,
    "issueType":"Hardware",
    "summary":"Deminsing Software",
    "technologyType":"Database",
    "technologyVersion":"Provision v1",
    "obsolateDate":"2024-08-28T12:00:00Z",
    "issueRemediationDate":"2024-08-28T12:00:00Z",
        "hardwareDetails":{
            "CPU":"12 Core"
        },
        "softwareDetails":{
            "CPU":"12 Core"
        },
        "department":"GDT",
        "servers":["GDB34","GDB39"],
        "ipAddress":"123.4.5.7",
        "serverRole":"DataCenter",
        "environment":"DEV"
}
Example Request
curl
curl --location 'https://eim-and-jira-sim-back.vercel.app/AddRecord' \
--data '{
   "appID":131003,
    "issueID":131020,
    "issueType":"Hardware",
    "summary":"Deminsing Software",
    "technologyType":"Database",
    "technologyVersion":"Provision v1",
    "obsolateDate":"2024-08-28T12:00:00Z",
    "issueRemediationDate":"2024-08-28T12:00:00Z",
        "hardwareDetails":{
            "CPU":"12 Core"
        },
        "softwareDetails":{
            "CPU":"12 Core"
        },
        "department":"GDT",
        "servers":["GDB34","GDB39"],
        "ipAddress":"123.4.5.7",
        "serverRole":"DataCenter",
        "environment":"DEV"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTUpdating_Records

https://eim-and-jira-sim-back.vercel.app/UpdateRecord

This is API Requet which will update data entry in Mongodb Atlas Backend with JSON Body

Bodyraw (json)
json
{
   "appID":131003,
    "issueID":131020,
    "issueType":"Software",
    "summary":"Deminsing Software",
    "technologyType":"Database",
    "technologyVersion":"Provision v1",
    "obsolateDate":"2024-08-28T12:00:00Z",
    "issueRemediationDate":"2024-08-28T12:00:00Z",
        "hardwareDetails":{
            "CPU":"16 Core"
        },
        "softwareDetails":{
            "CPU":"12 Core"
        },
        "department":"GDTSSP",
        "servers":["GDB34","GDB39","GDB456"],
        "ipAddress":"123.4.5.7",
        "serverRole":"DataCenter",
        "environment":"DEV"
}
Example Request
curl
curl --location 'https://eim-and-jira-sim-back.vercel.app/UpdateRecord' \
--data '{
   "appID":131003,
    "issueID":131020,
    "issueType":"Software",
    "summary":"Deminsing Software",
    "technologyType":"Database",
    "technologyVersion":"Provision v1",
    "obsolateDate":"2024-08-28T12:00:00Z",
    "issueRemediationDate":"2024-08-28T12:00:00Z",
        "hardwareDetails":{
            "CPU":"16 Core"
        },
        "softwareDetails":{
            "CPU":"12 Core"
        },
        "department":"GDTSSP",
        "servers":["GDB34","GDB39","GDB456"],
        "ipAddress":"123.4.5.7",
        "serverRole":"DataCenter",
        "environment":"DEV"
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

GETAllHardwareIssuesLength

https://eim-and-jira-sim-back.vercel.app/TotalHardwareIssuesLength

This API endpoint will return Length of All Hardware Issues

Example Request
curl
curl --location 'https://eim-and-jira-sim-back.vercel.app/TotalHardwareIssuesLength'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers