Page MenuHomePhabricator

Add story points to maniphest conduit call responses
Closed, ResolvedPublic

Description

I would like to have story points exported using maniphest.* conduit calls and see them in the JSON responses. I don't see any possibility to extract this information from external applications.

I need this functionality to generate reports and tables in external systems, e.g. a Wiki (not Phriction). Alternative ways to extract the information from maniphest that include task ID, dependencies, title, responsible person and story points for a given project would solve my problem, too.

Event Timeline

avivey claimed this task.
avivey added a subscriber: avivey.

maniphest.search method contains that under points:

pasted_file (445×383 px, 34 KB)

They're available in the "points" field of maniphest.search.

I use maniphest.query (which is marked stable).

{
  "PHID-TASK-pj4gbxhly6wefbgixzse": {
    "id": "11340",
    "phid": "PHID-TASK-pj4gbxhly6wefbgixzse",
    "authorPHID": "PHID-USER-5eozw435gwpkdncn625c",
    "ownerPHID": "PHID-USER-lgbuqrsim4oysksuxv5b",
    "ccPHIDs": [
      "PHID-USER-ba8aeea1b3fe2853d6bb",
      "PHID-USER-lgbuqrsim4oysksuxv5b",
      "PHID-USER-jmvolb7vo5qolixkccuq",
      "PHID-USER-5eozw435gwpkdncn625c"
    ],
    "status": "resolved",
    "statusName": "Resolved",
    "isClosed": true,
    "priority": "Needs Triage",
    "priorityColor": "violet",
    "title": "Add story points to maniphest conduit call responses",
    "description": "I would like to have story points exported using `maniphest.*`...",
    "projectPHIDs": [
      "PHID-PROJ-nitxwme6cvo45mcfry4s",
      "PHID-PROJ-f58a9ac58c333f106a69",
      "PHID-PROJ-ncoawx3pbnrhcb7pgza7"
    ],
    "uri": "https://secure.phabricator.com/T11340",
    "auxiliary": [],
    "objectName": "T11340",
    "dateCreated": "1468790054",
    "dateModified": "1468791180",
    "dependsOnTaskPHIDs": []
  }
}

Ok, I can rewrite my reports to fetch the task lists from maniphest.search. I think it's sufficient. Thanks.