Get User Info

Retrieve details for the currently logged user.

/users/me

GET https://apis.sandbox.flexshopper.com/v3/users/me

Returns user's details

Headers

{
  "data": {
    "userId": "1234-asdf-4321-fdsa",
    "firstName": "John",
    "lastName": "Doe",
    "createdAt": "2018-03-19T15:51:27.080Z",
    "transactions": [
      {
        "id": "asdf-1234-fdsa-4321",
        "createdAt": "2018-12-21"
      }
    ],
    "decision": {
      "approved": true,
      "status": "approved",
      "spendingLimit": 1300,
      "availableBalance": 1200,
      "availableWeeklySpending": 120,
      "createdAt": "2018-03-19T15:51:27.080Z"
    },
    "verificationStatus": "succeeded"
  }
}

Response Parameters

A successful request returns the HTTP 200 OK status code and a JSON response body that shows user details.

Last updated