The LaunchPath API is currently in private beta. Please contact us to inquire about access.

API Reference

Programs

/programs

Get a list of innovation Programs associated with your organization

Tip: This endpoint is mostly useful to retrieve Program IDs for use in querying other document types (e.g. getting all Ideas in a specific program).

Example Request:

axios.get('https://acmecorp.launchpath.io/api/v1-beta/programs', {
  headers: {
    Authentication: `Bearer ${process.env.LAUNCHPATH_API_TOKEN}`,
    Accept: 'application/json',
  },
})

Example Response:

{
  "items": [
    {
      "_id": "632b771832d29d840043f72a",
      "name": "Acme Corp Big Swings Innovation Program",
      "status": "Active",
      "contentSettings": {
        "dashboardHeadline": "Become an Acme Corp Intrapreneur"
      },
      "admins": [
        {
          "_id": "5fd917efa3687e785d4c7c9b",
          "email": "martin.bishop@acmecorp.biz",
          "name": "Martin Bishop"
        }
      ],
      "updatedAt": "2021-04-28T21:04:58.731+00:00"
    },
    {
      "_id": "632b77207c53bf78e3ff781e",
      "name": "Acme Corp R&D",
      "status": "Active",
      "contentSettings": {
        "dashboardHeadline": "Become an Acme Corp Innovator"
      },
      "admins": [
        {
          "_id": "5b364f14053fa30c90208ba3",
          "email": "jun.kim@acmecorp.biz",
          "name": "Jun Kim"
        }
      ],
      "updatedAt": "2021-04-28T21:04:58.731+00:00"
    }
  ]
}