AVAILABLE WITH BUSINESS SUBSCRIPTION

Request: GET /gamification/points

Permissions to Run the Request

 Account Owner, Account Administrators, Department Administrators, Publishers, or custom roles

Department Administrators, Publishers, and users with a custom role can get a list of users belonging to departments they manage and their sub-departments.

Request Headers and Parameters

Header

Description

X-Auth-Account-Url (required)

The base URL of the account, e.g. https://myaccount.ispringlearn.com

X-Auth-Email (required)The login of Account Owner, Account AdministratorDepartment Administrator, Publisher, or a user with a custom role. 
X-Auth-Password (required)The password of Account Owner, Account AdministratorDepartment Administrator, Publisher, or a user with a custom role. 
ParameterDescription
userIds (optional)Filter by user ID. You can get points for certain users.

Response Codes

Code

Text

Description

200OKThe request has been successfully processed. The response body contains the XML data regarding users and their points. 
400Bad RequestA request error.
401UnauthorizedAn authorization error.
403Permission deniedThe user doesn't have enough permissions to get a list of users.

Sample Request

GET /gamification/points https/1.1
Host: api-learn.ispringlearn.com
X-Auth-Account-Url: https://myaccount.ispringlearn.com
X-Auth-Email: email@email.com
X-Auth-Password: password
XML

Sample Response

https/1.1 200 OK
 
<?xml version="1.0" encoding="UTF-8"?>
<response>
<userPointsInfo>
<userId>2c180ffc-8841-11e9-b68a-0242c0a85016</userId>
<points>421</points>
</userPointsInfo>
</response>
XML