Soxway Docs
Account

Get account info

Get the authenticated user's account information.

GET
/v1/account

Authorization

bearerAuth
AuthorizationBearer <token>

Personal access token obtained via POST /v1/auth/token

In: header

Response Body

application/json

curl -X GET "https://api.soxway.io/v1/account"
{
  "data": {
    "id": 1,
    "name": "John Doe",
    "email": "[email protected]",
    "balance": 25.5,
    "currency": "USD",
    "reseller_enabled": true,
    "created_at": "2019-08-24T14:15:22Z"
  }
}