Application API (v1): Get Board Identifiers
This method is used to get all the necessary identifiers for a Board. These identifiers are useful for making other API calls, such as lane IDs, card types, and board users.
Request URL (GET):
https://{accountname}.leankit.com/kanban/api/board/{boardId}/GetBoardIdentifiers
Sample:
https://myaccount.leankit.com/kanban/api/board/256064019/GetBoardIdentifiers
Example Response:
{ "ReplyData": [ { "BoardId": 256064019, "CardTypes": [ { "IsDefaultTaskType": false, "IsDefault": true, "IsTaskType": false, "IsCardType": true, "Id": 256291532, "Name": "Other Work" }, { "IsDefaultTaskType": false, "IsDefault": false, "IsTaskType": false, "IsCardType": true, "Id": 256291533, "Name": "Defect" }, { "IsDefaultTaskType": false, "IsDefault": false, "IsTaskType": false, "IsCardType": true, "Id": 256291534, "Name": "Improvement" }, { "IsDefaultTaskType": false, "IsDefault": false, "IsTaskType": false, "IsCardType": true, "Id": 256291535, "Name": "Risk / Issue" }, { "IsDefaultTaskType": false, "IsDefault": false, "IsTaskType": false, "IsCardType": true, "Id": 256291536, "Name": "New Feature" }, { "IsDefaultTaskType": true, "IsDefault": false, "IsTaskType": true, "IsCardType": false, "Id": 256291537, "Name": "Subtask" } ], "BoardUsers": [ { "Id": 356291536, "Name": "me@mycompany.com" } ], "Lanes": [ { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 1, "LaneType": 1, "ClassType": 0, "Type": 0, "ParentLaneId": null, "TopLevelParentLaneId": null, "CardLimit": 0, "Index": 0, "Id": 256392758, "Name": "not started - future work" }, { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 1, "LaneType": 1, "ClassType": 0, "Type": 0, "ParentLaneId": 256392758, "TopLevelParentLaneId": 256392758, "CardLimit": 0, "Index": 2, "Id": 256392759, "Name": "not started - future work:approved" }, { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 1, "LaneType": 1, "ClassType": 0, "Type": 0, "ParentLaneId": 256392758, "TopLevelParentLaneId": 256392758, "CardLimit": 0, "Index": 0, "Id": 256392760, "Name": "not started - future work:new requests" }, { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 1, "LaneType": 1, "ClassType": 0, "Type": 0, "ParentLaneId": 256392758, "TopLevelParentLaneId": 256392758, "CardLimit": 0, "Index": 3, "Id": 256392761, "Name": "not started - future work:ready to start" }, { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 2, "LaneType": 3, "ClassType": 0, "Type": 0, "ParentLaneId": null, "TopLevelParentLaneId": null, "CardLimit": 0, "Index": 4, "Id": 256392762, "Name": "finished - ready to archive" }, { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 2, "LaneType": 3, "ClassType": 0, "Type": 0, "ParentLaneId": 256392762, "TopLevelParentLaneId": 256392762, "CardLimit": 0, "Index": 2, "Id": 256392763, "Name": "finished - ready to archive:discarded requests / ideas" }, { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 2, "LaneType": 3, "ClassType": 0, "Type": 0, "ParentLaneId": 256392762, "TopLevelParentLaneId": 256392762, "CardLimit": 0, "Index": 1, "Id": 256392764, "Name": "finished - ready to archive:started but not finished" }, { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 2, "LaneType": 3, "ClassType": 0, "Type": 0, "ParentLaneId": 256392762, "TopLevelParentLaneId": 256392762, "CardLimit": 0, "Index": 0, "Id": 256392765, "Name": "finished - ready to archive:finished as planned" }, { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 0, "LaneType": 2, "ClassType": 0, "Type": 0, "ParentLaneId": null, "TopLevelParentLaneId": null, "CardLimit": 0, "Index": 1, "Id": 256392766, "Name": "doing now" }, { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 0, "LaneType": 2, "ClassType": 0, "Type": 0, "ParentLaneId": null, "TopLevelParentLaneId": null, "CardLimit": 0, "Index": 2, "Id": 256392767, "Name": "under review" }, { "IsDefaultDropLane": false, "ActivityId": null, "LaneClassType": 0, "LaneType": 3, "ClassType": 0, "Type": 0, "ParentLaneId": null, "TopLevelParentLaneId": null, "CardLimit": 0, "Index": 3, "Id": 256392768, "Name": "recently finished" } ], "ClassesOfService": [], "Priorities": [ { "Id": 3, "Name": "Critical" }, { "Id": 2, "Name": "High" }, { "Id": 1, "Name": "Normal" }, { "Id": 0, "Name": "Low" } ], "LaneClassType": [ { "Id": 2, "Name": "Archive" }, { "Id": 1, "Name": "Backlog" }, { "Id": 0, "Name": "Active" } ], "LaneType": [ { "Id": 99, "Name": "Untyped" }, { "Id": 3, "Name": "Completed" }, { "Id": 2, "Name": "InProcess" }, { "Id": 1, "Name": "Ready" } ], "BoardStatistics": null } ], "ReplyCode": 200, "ReplyText": "The Board Identifiers were retrieved successfully." }