Items in Basket

Subtotal

Checkout View and edit basket

Customers Also Bought

EXPORT - User activation status

Resource URL

URL: user/export/status


Parameters

string username
required

Username

string password
required

Password

int pageNumber
optional

Page number to retrieve

int pageSize
optional

Maximum number of elements on each page


Return value

userStatussesA list containing activation status data for a specific user
userStatusses[].idID of the user
userStatusses[].externalIdExternal ID of the user

userStatusses[].status

The activation status of the user on the portal.

  • ACTIVE
  • NOT_ACTIVE
pageNumberNumber of the current page
pageSizeSize of the current page

Example request

URL

https://www.trainingportal.no/mintra/rest/user/export/status

POST DATAusername=username&password=secret&pageNumber=10&pageSize=20
{
"userStatusses": [
{ "id": 123, "externalId": "abc", "status": "NOT_ACTIVE"},
{ "id": 456, "externalId": "def", "status": "ACTIVE"}
],
"pageNumber": 10,
"pageSize": 20
}