Returns a list of authorized employees within a loyalty program

Request Information

Headers

NameDescriptionTypeAdditional information
Authentication

Authentication token

string

Required

URI Parameters

NameDescriptionTypeAdditional information
accountid

Your account id

globally unique identifier

Required

skip

Skip record count

integer

Optional

Default value is 0

take

Take record count

integer

Optional

Default value is 500

Body Parameters

None.

Response Information

Resource Description

Employee list

NameDescriptionTypeAdditional information
Data

PageListOfApiLPEmployee

None.

Success

boolean

None.

Messages

Collection of ErrorMessage

None.

Response Formats

application/json

Sample:
{
  "Data": {
    "Items": [
      {
        "Id": "30F0B01C-8B37-4D64-86BC-C2C88F9CA276",
        "FirstName": "First name",
        "LastName": "Last name",
        "Phone": "972 999 9999",
        "Email": "someemail@gmail.com",
        "Notes": "Any notes",
        "ExternalAccountId": "Any external account id if exist",
        "StatusCode": "A",
        "StatusDescription": "Active"
      },
      {
        "Id": "7989DBC5-87FB-4B48-8975-37DA8A9743A9",
        "FirstName": "First name",
        "LastName": "Last name",
        "Phone": "972 999 9999",
        "Email": "someemail2@gmail.com",
        "Notes": "Any notes",
        "ExternalAccountId": "Any external account id if exist",
        "StatusCode": "A",
        "StatusDescription": "Active"
      }
    ],
    "AllCount": 2
  },
  "Success": true,
  "Messages": []
}