Skip to main content

User-related API environment

Pre-live user-related API docs

These pages describe the Pre-live user-related API stack.

Use pre-live OAuth credentials, pre-live API base URLs, and pre-live app URLs when following this documentation. Keep your OAuth flow, API requests, callback URLs, and manual testing within the pre-live environment.

Add collection

Create a new collection under user's account.

Request Body
    name string required

    The name of the new collection to be created.

Responses

Request has been handled successfully.

Response Headers
  • X-Mutation-At string

    Unix timestamp (milliseconds) of the latest mutation for the user. Clients should store this value and include it in subsequent mutation requests for optimistic concurrency control.


Schema
    success boolean
    data object
    id string required
    name string required
    slug string nullable required
    isPrivate boolean required
    isDefault boolean required
    modifiable boolean required
    updatedAt date-time nullable required
    url string nullable
    bookmarksCount integer
    resourcesCount integer
    count integer
Loading...