githubEdit

get__settings_user

GET /settings/user

Get User Settings

Retrieve the current user's settings. The user must be authenticated to access their settings.

TypeScript Client Library

// Using the Flashback TypeScript client
import { FlashbackClient } from '@flashback/client';

const client = new FlashbackClient({ accessToken: 'your-access-token' });

// Get user settings
try {
  const result = await client.settings.user.get();
  console.log('User settings:', result);
} catch (error) {
  console.error('Failed to get user settings:', error);
}

Code Samples

# You can also use wget
curl -X GET https://backend.flashback.tech/settings/user \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access-token}'

Example responses

200 Response

404 Response

500 Response

Responses

Status
Meaning
Description
Schema

200

User settings retrieved successfully

Inline

404

User not found

Inline

500

Internal server error

Inline

Response Schema

Status Code 200

Name
Type
Required
Restrictions
Description

» success

boolean

true

none

Indicates if the request was successful

» settings

object

true

none

User settings object containing key-value pairs

Status Code 404

Name
Type
Required
Restrictions
Description

» success

boolean

true

none

Always false for error responses

» message

string

true

none

Error message describing the issue

Status Code 500

Name
Type
Required
Restrictions
Description

» success

boolean

true

none

Always false for error responses

» message

string

true

none

Error message describing the issue

» error

string

false

none

Additional error details if available

DTOs

GetSettingsResponse

SettingsErrorResponse

Last updated

Was this helpful?