Get Sales Persons

Get information of sales persons created on the application

Get information of sales persons created on the application

GET https://<your_business_alias>.lendastack.io/ias/salesperson/salesperson

This endpoint allows you to fetch salespersons on the application.

Query Parameters

Name
Type
Description

pageNumber

int

Specify exactly what page you want to retrieve

pageSize

int

Specify how many records you want to retrieve per page

searchParameter

String

Search customer's by first name, last name or email address

Headers

Name
Type
Description

Authentication*

String

The encoded combination of your public key and secret key (see the Test and go live section of the docs)

{
    "data": {
        "pageNumber": 1,
        "totalPages": 1,
        "pageSize": 20,
        "totalCount": 2,
        "hasPreviousPage": false,
        "hasNextPage": false,
        "items": [
            {
                "userId": 143,
                "branchId": 6,
                "firstName": "Precious",
                "lastName": "Gabriel",
                "canSell": true,
                "branchName": "Portharcourt",
                "status": "Active"
            },
            {
                "userId": 1,
                "branchId": 6,
                "firstName": "Temi",
                "lastName": "Ekene",
                "canSell": false,
                "branchName": "Portharcourt",
                "status": "Active"
            }
        ]
    },
    "status": true,
    "message": "Success"
}

Last updated

Was this helpful?