GET /applications/application/{appid}/users

Retrieve a list of users currently associated with the Application identified by {appid}

Return

A list of Users associated with the Application.

Example Request

GET Request

curl -X GET -u username:password \
  -H 'content-type: application/json' \
  https://auth.econtext.ai/api/applications/application/bf59fd16-d003-45ae-889d-4ed06b804c21/users

GET Response

{
  "econtext": {
    "result": {
      "users": [
        {
          "username": "test-user@econtext.ai",
          "status": "UNVERIFIED",
          "applications": [
            "bf59fd16-d003-45ae-889d-4ed06b804c21"
          ],
          "href": "https://auth.econtext.ai/api/users/user/a3bc334a-f9f2-4797-aaa2-1440811c0ec0",
          "groups": [],
          "apikeys": [],
          "id": "a3bc334a-f9f2-4797-aaa2-1440811c0ec0",
          "name": "Test User",
          "created_at": "2017-04-20 15:55:08.339000+00:00",
          "modified_at": "2017-04-20 15:55:08.377000+00:00",
          "custom_data": null,
          "email": "test-user@econtext.ai"
        }
      ]
    },
    "elapsed": 0.0032689571380615234
  }
}