Skip to main content
GET
/
api
/
lists
/
{id}
/
column-preferences
Get column preferences
curl --request GET \
  --url https://app.puffle.ai/api/lists/{id}/column-preferences \
  --header 'Authorization: Bearer <token>'
{
  "preferences": [
    {
      "columnId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "isHidden": true,
      "position": 0
    }
  ]
}

Overview

Return the authenticated user’s column visibility and ordering overrides for this list. Preferences are stored in list_column_preferences and are keyed by (list_id, user_id, column_id).
This operation shares the URL path /api/lists/{id}/column-preferences with other verbs. See the sibling page for related operations on the same resource.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

List UUID. Must be owned by the caller.

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Response

Preferences for this list/user. Empty array means the user has never overridden any column.

preferences
object[]
required