/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

Name
Type
Description

:id

number

The ID of the bug or initiative or item

:ownertable

string

"Bugs" or "Initiatives" or "Items"

Headers

Name
Type
Description

Authentication

string

Authorization: Bearer 50ca9ba0f7b1444fa55d5

Request Body

Name
Type
Description

object

{"items": [], "initiatives": [28], "bugs": [], "backlogs": [], "delete": false}

{
    "success": true
}

Get connections list

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

Gets the list of connections.

Path Parameters

Name
Type
Description

:id

number

The ID of the bug or initiative or item

:infotable

string

"Bugs" or "Initiatives" or "Items"

:needinfotable

string

"Bugs" or "Initiatives" or "Items"

Headers

Name
Type
Description

Authentication

string

Authorization: Bearer 50ca9ba0f7b1444fa55d5

{
    "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

Was this helpful?