v1

latestOpenAPI 3.0.0Superhuman Developer Terms2026-08-06124404444.0 KB
Packs

List the versions for a Pack.

Get the list of versions of a Pack.

get/packs/{packId}/versions

Path parameters

packIdinteger required

ID of a Pack

Query parameters

limitinteger

Maximum number of results to return in this query.

pageTokenstring

An opaque token used to fetch the next page of results.

Response

List of Pack versions.

nextPageTokenstring

If specified, an opaque token used to fetch the next page of results.

nextPageLinkstring url

If specified, a link that can be used to fetch the next page of results.

Example response

{
  "items": [
    {
      "packId": 1003,
      "buildNotes": "Adding a new formula.",
      "createdAt": "2018-04-11T00:18:57.946Z",
      "creationUserLoginId": "api@example.com",
      "releaseId": 2,
      "packVersion": "1.0.3",
      "sdkVersion": "1.5.1"
    }
  ],
  "creationUsers": [
    {
      "name": "John Doe",
      "loginId": "user@example.com",
      "pictureLink": "https://cdn.coda.io/avatars/default_avatar.png"
    }
  ],
  "nextPageToken": "eyJsaW1pd",
  "nextPageLink": "https://docs.superhuman.com/apis/v1/packs/1/versions?pageToken=xyz"
}