/connections

These methods allow you to create and get info on connections between items, bugs and initiatives.

Create connection

POST https://pm415.com/api/connections/:ownertable/:id

Creates the connection between items, bugs, iniatives.

Path Parameters

Headers

Request Body

{
    "success": true
}

Get connections list

GET https://pm415.com/api/connections/:needinfotable/:infotable/:id

Gets the list of connections.

Path Parameters

Headers

{
    "success": true,
    "connections": [
        {
            "id": 7,
            "initiativeId": 28,
            "backlogId": null,
            "itemId": null,
            "bugId": 6
        },
        {
            "id": 8,
            "initiativeId": null,
            "backlogId": null,
            "itemId": 52,
            "bugId": 6
        }
    ],
    "info": [
        {
            "assignee": null,
            "organizationId": 17,
            "id": 52,
            "title": "abc",
            "description": "Description",
            "statusId": 3,
            "points": 0,
            "createdBy": 13,
            "forecastedRelease": null,
            "actualRelease": null,
            "plannedOn": null,
            "ownerId": 19,
            "ownerTable": "backlogs",
            "mailers": "!hwyxlisjb@emlpro.com!",
            "orderIndex": 2,
            "archived": 0
        }
    ]
}

Last updated