Get Teams

Get information of Teams created on the application

Get information of teams created on the application

GET https://<your_business_alias>.lendastack.io/ias//team?searchParameter=&pageSize=10&pageNumber=1

This endpoint allows you to fetch teams 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": [
            {
                "teamId": 31,
                "teamName": "FHUB Store",
                "createdBy": 3,
                "status": 0,
                "members": 0,
                "appOwnerKey": "5a4d47a6-1bb8-4140-bb2d-3383b6ed3638",
                "branchId": 10,
                "createdAt": "2023-08-31T12:44:53.7174423"
            },
            {
                "teamId": 30,
                "teamName": "FHUB Store2",
                "createdBy": 3,
                "status": 0,
                "members": 0,
                "appOwnerKey": "5a4d47a6-1bb8-4140-bb2d-3383b6ed3638",
                "branchId": 10,
                "createdAt": "2023-08-31T12:44:44.8674256"
            }
        ]
    },
    "status": true,
    "message": "Success"
}

Last updated

Was this helpful?