Skip to content

Instantly share code, notes, and snippets.

@hpneo
Created April 27, 2020 14:15
Show Gist options
  • Save hpneo/213b9816de38384255e811c020eff8ee to your computer and use it in GitHub Desktop.
Save hpneo/213b9816de38384255e811c020eff8ee to your computer and use it in GitHub Desktop.

For both:

  • https://fino.able.co/api/products/:product_id/items
  • https://fino.able.co/api/products/:product_id/items/search

Response should include cycle_time for each item:

[
  {
    // ...another Fino item
  },
  {
    id: 3817
    epicId: 490,
    title: "User is able to see slack notification of upcoming meeting",
    // ...more fields from Fino items
    cycle_time: {
      ready: 6,
      started: 2,
      delivered: 4,
      accepted: 2,
      rejected: 2
    }
  }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment