📕
Vaultoro API Docs
  • Getting Started
  • Example API Calls
  • Public
    • Reset email
    • OHLC
    • Orders
    • Ticker
    • Trades
    • Trading Fees
    • Audit
  • Private
  • Ledger
  • Assets
  • Balances
  • History
    • Export
    • Fees
    • Trades
    • Transactions
  • Orders
  • OTC
  • Referrals
  • Tokens
  • Trading Fees
  • User
  • Login History
  • Change Email
  • Audit
  • Portfolio
  • Pending Approvals
  • Unverify
  • Update Terms Version
  • Address Book
    • Delete address
    • Update Address
    • List Addresses
    • Enable Address Book Whitelist
    • Disable address book whitelist
Powered by GitBook
On this page

Was this helpful?

Login History

This API is used for listing a user's login activity.

Login History

GET https://api.vaultoro.com/v1/private/history/logins

Query Parameters

Name
Type
Description

until

number

Timestamp for the end date of the results

limit

number

Number of results per page

page

number

The number of requested page.

sortDirection

integer

The direction to sort by createdAt field. It can be either 1 or -1

since

number

Timestamp for the beginning date of the results

Headers

Name
Type
Description

VTOKEN

string

The API token

{
    "data": {
        "results": [
            {
                "ts": 1618570442,
                "ip": "::ffff:127.0.0.1",
                "createdAt": "2021-04-16T10:54:02.000Z"
            },
            {
                "ts": 1618781118,
                "ip": "::ffff:127.0.0.1",
                "createdAt": "2021-04-18T21:25:18.000Z"
            },
            {
                "ts": 1618781546,
                "ip": "::ffff:127.0.0.1",
                "createdAt": "2021-04-18T21:32:26.000Z"
            },
            {
                "ts": 1618842209,
                "ip": "::ffff:127.0.0.1",
                "createdAt": "2021-04-19T14:23:29.000Z"
            },
            {
                "ts": 1618844021,
                "ip": "::ffff:127.0.0.1",
                "createdAt": "2021-04-19T14:53:41.000Z"
            }
        ]
    }
}

PreviousUserNextChange Email

Last updated 3 years ago

Was this helpful?