Employer & Industry

Retrieve all setup employer and industry related information on the system

Get Employers

GET https://<your_business_alias>.lenda.ng/ias/employer/employers

This endpoint allows you to fetch the employers on the system.

Query Parameters

Name
Type
Description

pageSize

string

Specify how many records you want to retrieve per page

pageNumber

string

Specify exactly what page you want to retrieve

searchParameter

string

Search employers by employer name

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": 6,
    "pageSize": 2,
    "totalCount": 11,
    "hasPreviousPage": false,
    "hasNextPage": true,
    "items": [
      {
        "employerId": 14,
        "employmentIndustryId": 151,
        "employerName": "Test Emp",
        "employerAddress": "9, Testers close, ALAKA, Test City",
        "employerPayDate": 5,
        "userId": null,
        "status": "Active",
        "externalCreator": "Abiola Test",
        "createdAt": "2021-02-23T11:28:56.1521302"
      },
      {
        "employerId": 2,
        "employmentIndustryId": 57,
        "employerName": "Ark of Noah",
        "employerAddress": "lagos",
        "employerPayDate": 30,
        "userId": null,
        "status": "Active",
        "externalCreator": "Emeka Test",
        "createdAt": "0001-01-01T00:00:00"
      }
    ]
  },
  "status": true,
  "message": "Success"
}

Last updated

Was this helpful?