- Walkthrough DASH SAAS
- CMS
- Employee
- Company
- Province
- Ref Education Level
- Industry
- Company
- Subscription
- Assesment Design
- Menu
- Admin Client
- Master Data
- Meeting
- Participant
- Open
- Assessor
- Report
- Batch
- External Link
- Dummy
- Interview TaskGET
- LoginPOST
- Get Company SettingGET
- WEB
- Open API Engauge
Find Industries
Developing
GET
/rest/admin/secured/industry/master-industry/find
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
search
string
optional
before format : search=[somesearch]
after format : search=%5Bsomesearch%5D
Example:
%5Bsomesearch%5D
sort
string
optional
Example:
industryName,ASC
page
integer
optional
Example:
0
size
integer
optional
Example:
10
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://service-dash.dlabssaas.io/rest/admin/secured/industry/master-industry/find?search=%5Bsomesearch%5D&sort=industryName,ASC&page=0&size=10'
Responses
🟢200Success
application/json
Body
industryId
integer
required
industryName
string
required
industryDesc
string
required
Examples
{
"status": "success",
"data": {
"content": [
{
"industryId": 1,
"industryName": "Technology",
"industryDesc": null
},
{
"industryId": 2,
"industryName": "Health Insurance",
"industryDesc": null
},
{
"industryId": 3,
"industryName": "Trading",
"industryDesc": null
}
],
"pageable": {
"sort": {
"sorted": false,
"unsorted": true,
"empty": true
},
"offset": 0,
"pageNumber": 0,
"pageSize": 20,
"unpaged": false,
"paged": true
},
"last": true,
"totalElements": 3,
"totalPages": 1,
"size": 20,
"number": 0,
"sort": {
"sorted": false,
"unsorted": true,
"empty": true
},
"first": true,
"numberOfElements": 3,
"empty": false
},
"info": {
"id": "SUCCESS_GET_DATA",
"message": "Get data succeed",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}