LogoLogo
  • Introduction
  • OVERVIEW
    • About ParqEx
      • -- Marketplace
      • -- Access+
      • -- GuestParq & GuestAccess
      • -- Enforcer
    • API Requirements
    • Roles and Permissions
  • GETTING STARTED
    • Requesting an Account
    • Using RESTful Tools
    • Webhooks
  • Embedding ParqEx in Native Mobile Apps
    • Overview
    • FAQ
    • Technical Documentation
      • iOS Implementation Guide
      • Android Implementation Guide
  • THE BASICS
    • Entities
    • Best Practices
    • Testing Accounts
  • OAUTH
    • Overview
    • How to Authorize Access
      • Step 1: Generate Authorization URL
      • Step 2: Handle Authorization Response
      • Step 3: Request an Access Token
      • Step 4: Call API Endpoints
      • Step 5: Refresh the Tokens
  • API ENDPOINTS
    • Overview
    • Get User Info
    • Get User Settings
    • Get User Devices
    • Toggle Access Point
    • Invite User (internal)
    • Get Access History
Powered by GitBook
On this page

Was this helpful?

  1. API ENDPOINTS

Get User Settings

Get User Device Settings

POST https://api.parqex.com/oauth/v1/endpoints/user-info

Headers

Name
Type
Description

Accept

string

Always set to application/json

Content-Type

string

Always set to application/json

Authorization

string

Set to Bearer <ACCESS_TOKEN>

Accept-Charset

string

Always set to utf-8

Accept-Encoding

string

Always set to gzip

{
    "success": true,
    "timestamp": ,
    "data": {
        "door_open_alert_notification_enabled": true,
        "door_open_alert_notification_tone": "door_open",
        "time_zone": "America/New_York",
        "pin_code": "1234"
    }
}
{
    "errors": [
        { 
            "message": "<ERROR MESSAGE>"
        }
    ]
}
{
    "errors": [
        { 
            "message": "<ERROR MESSAGE>"
        }
    ]
}
{
    "errors": [
        { 
            "message": "The server encountered an unexpected condition that prevented it from fulfilling the request."
        }
    ]
}

PreviousGet User InfoNextGet User Devices

Last updated 4 years ago

Was this helpful?