action pocketsmith_get_me { label: "Get the authorised user" description: "Gets the user that corresponds to the access token used in the request." provider: pocketsmith method: GET path: "/me" encoding: json output: { type: "object" properties: { always_show_base_currency: { type: "boolean" description: "Whether the user wants to see all accounts in their base currency instead of the native account currency." } available_accounts: { type: "integer" description: "The user's total number of available accounts." } available_budgets: { type: "integer" description: "The user's total number of available budgets." } avatar_url: { type: "string" description: "The URL to the user's avatar." } base_currency_code: { type: "string" description: "The user's base currency." } beta_user: { type: "boolean" description: "Whether the user has opted in to beta features." } created_at: { type: "string" description: "When the user signed up." } email: { type: "string" description: "The user's email address." } forecast_defer_recalculate: { type: "boolean" description: "Whether the user's forecast recalculation should be deferred." } forecast_end_date: { type: "string" description: "The date that the user's forecast ends." } forecast_last_accessed_at: { type: "string" description: "When the user's forecast was last accessed." } forecast_last_updated_at: { type: "string" description: "When the user's forecast was last updated." } forecast_needs_recalculate: { type: "boolean" description: "Whether the user's forecast needs to be recalculated." } forecast_start_date: { type: "string" description: "The date that the user's forecast starts." } id: { type: "integer" description: "The unique identifier of the user." } is_reviewing_transactions: { type: "boolean" description: "Whether the user wants to review new transactions, transfer transactions or categorisation." } last_activity_at: { type: "string" description: "When the user last interacted with PocketSmith, via any application or the API." } last_logged_in_at: { type: "string" description: "When the user last logged into PocketSmith." } login: { type: "string" description: "The user's username." } name: { type: "string" description: "The full name of the user, although not all users will have a name set." } time_zone: { type: "string" description: "The user's time zone." } updated_at: { type: "string" description: "When the user was last updated." } using_multiple_currencies: { type: "boolean" description: "Whether the user has multiple currencies in use across their account." } week_start_day: { type: "integer" description: "The day of the week the user wishes their calendars to start on. A number between 0 and 6, where 0 is Sunday and 6 is Saturday." } } } }