• HTTP document
    Show / Hide Table of Contents
    • Login Interface
      • Explanation of terms
      • Login
      • Refresh Login
    • Write Data Process
      • Add FGate Group
      • Add FGate
      • Add Monitoring Group
      • Add Monitoring Point
      • Get FGate List
      • FGate Monitoring List
      • Write Monitoring Value
      • Get Monitoring Value
    • Information Access
      • Get Single FGate
      • Get Monitoring Group
      • Get Some monitoring Points
      • Get Monitoring Point by Group
      • Get Iccid、Imei
      • Get Location of FGate
    • Remote Download
      • Get FGate Drive List
      • Download FGate Drive
      • Get Register Type of Device
      • Get Server Drive List
    • Modification Interface
      • Modify FGate Group
      • Modify FGate Name
      • Modify Monitoring
      • Modify Refresh Interval
    • Delete Interface
      • Delete FGate Group
      • Delete FGate
      • Delete Monitoring Group
      • Delete Monitoring Point
    • Alarm Interface
      • Alarm Group
        • Get Alarm Group List
        • Add Alarm Group
        • Modify Alarm Group
        • Delete Alarm Group
      • Alarm Contact
        • Get Alarm Contact List
        • Get Single Alarm Contact
        • Add Alarm contact
        • Modify Alarm Contact
        • Delete Alarm Contact
      • Alarm Record
        • Get Alarm Entry List
        • Get Alarm Entry
        • Add Alarm Entry
        • Modify Alarm Entry
        • Delete Alarm Entry
        • Get Historical Alarm
        • Get Alarm Entry Status
        • Confirm Alarm
    • Historical Data
      • Get Historical Data List
      • Get Historical Data Entry
      • Add Historical Record
      • Update Historical Record
      • Delete Historical Data
      • Get Historical Data
    • Push Monitoring Data
      • Enable Monitoring Group
      • Disable Monitoring Group
      • Enable Monitoring Group List
      • Disable Monitoring Group List
      • Enable All Monitoring Points
      • Disable All Monitoring Points
      • Enable One Monitoring Point
      • Disable One Monitoring Point
      • Enable Some Monitoring Points
      • Disable Some Monitoring Points
      • Enable Some Monitoring Points
      • Enable One Monitoring Group
      • Enable Some Monitoring Groups
    • Data Push(SignalR)
      • Real-time Data Push(signalR)
      • Status Change Push
      • Real-time Data Push
      • Alarm Trigger
      • Alarm Restore
    • Write in Batch
      • Get Bacth Write Group
      • Write Value in Batch
    • Appendix
      • Appendix One
      • Appendix Two
      • Appendix Three
      • 429 Status Code

    Get Single FGate

    • Description

      This interface is to retrieve all FGate groups of current user's account, along with the parameters of FGates under each group.

    • Request Address

      URL:[Host Server]/api/client/box/reg/boxno/{boxNo}

    • Address Parameter Description

      Field Type Description
      Host Server string See Explanation of terms
      boxNo string Serial number of FGate
    • Method

      GET

    • Headers

      Field Type Description
      Authorization string "Bearer " + Access Token obtained from the login interface
    • Body

      NULL

    • Success Response

      Note: The interface returns many parameters, the parameters listed in the document are basically required parameters, other parameters are not written in the document is not used parameters, please ignore.

      Response Fields

      Field Type Description
      id string Registration ID associated with the user when adding (sharing) the FGate
      boxUid string FGate ID
      alias string FGate alias
      regData string Registration date
      owned boolean Whether owned by the user
      shared boolean Whether shared by others
      box json object See table below
      group json object Group to which the FGate belongs
      group_Id string Group ID
      user json object Information of the account to which the FGate belongs
      user_Id string User ID

      box Object Properties

      Field Type Description
      id string FGate UID
      boxNo string FGate serial number
      boxType string 0: Standard Box, 1: Mini Box, 2, 4, 7: Lite Box, 5: Link Box
      connectionState int
      cs JSON object apiBaseUrl: Server which box is connected with.
      signalrUrl: SignalR server which box pushes data to.
      devicePrimarySource int FGate data source, 0: FGate, 1: Server
      memo string Remark
      net int 0: Unknown, 1: Ethernet, 2: GPRS, 4: WIFI (not supported), 5: 4G
      mode int 1: Transparent, 0: Normal
      useLongitude double Longitude of manual positioning
      useLatitude double Latitude of manual positioning
      longitude double Longitude of automatical positioning
      latitude double Latitude of automatical positioning
      useAddress string Location of manual positioning
      address string Location of automatical positioning
      radius int Longitude radius

      group Object Properties

      Field Type Description
      id string Group ID
      name string Name of the group

      user Object Properties

      Field Type Description
      userName string Name of the user
      email string User's email
      phoneNumber string User's phone number
    • Status Codes

      Code Description
      401 Access token expired
      404 FGate does not exist
    Back to top Generated by DocFX