Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 556 Bytes

File metadata and controls

37 lines (28 loc) · 556 Bytes

Show Current User

Get the details of the currently Authenticated User along with basic subscription information.

URL : /api/patrons

Method : GET

Auth required : NO

Permissions required : None

Success Response

Code : 200 OK

Content examples

{
  "patrons": [
    {
      "id": 123,
      "topRatingPlace": 3,
      "nickname": "Bezons3000",
      "donationAmount": 123987
    },
    {
      "id": 132,
      "topRatingPlace": 1,
      "nickname": "BlueWolf",
      "donationAmount": 323984
    }
  ]
}