- 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
Update Industry
Developing
PUT
/rest/admin/secured/industry/master-industry/update/{industryId}
Request
Path Params
industryId
string
required
Example:
111
Body Params application/json
industryName
string
required
industryDesc
string
required
Example
{
"industryName": "HC",
"industryDesc": "Human Resource"
}
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 PUT 'https://service-dash.dlabssaas.io/rest/admin/secured/industry/master-industry/update/111' \
--header 'Content-Type: application/json' \
--data-raw '{
"industryName": "HC",
"industryDesc": "Human Resource"
}'
Responses
🟢200Success
application/json
Body
status
string
required
data
object
required
industryId
integer
required
industryName
string
required
industryDesc
string
required
info
object
required
id
string
required
message
string
required
messageEn
string
required
messageId
string
required
field
string
required
redirect
string
required
Examples
{
"status": "success",
"data": {
"industryId": 111,
"industryName": "HC",
"industryDesc": "Human Resource"
},
"info": {
"id": "SUCCESS_EDIT_DATA",
"message": "Industry successfully edited !",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}