v1

latestOpenAPI 3.0.0Superhuman Developer Terms2026-08-06124404444.0 KB
Packs

Create Pack

Creates a new Pack, essentially registering a new Pack ID. The contents of the Pack will be uploaded separately.

post/packs

Request body

workspaceIdstring

The parent workspace for the Pack. If unspecified, the user's default workspace will be used.

namestring

The name for the Pack.

descriptionstring

A brief description of the Pack.

sourcePackIdnumber nullable

The ID of the new Pack's source, if this new Pack was forked.

Example request

{
  "workspaceId": "ws-asdf",
  "name": "Trigonometry",
  "description": "Common trigonometric functions.",
  "sourcePackId": 10029
}

Response

Info about the Pack that was just created.

packIdnumber required

The ID assigned to the newly-created Pack.

Example response

{
  "packId": 123
}