- Walkthrough DASH SAAS
- CMS
- Employee
- Company
- Province
- Ref Education Level
- Industry
- Company
- Subscription
- Assesment Design
- Menu
- Admin Client
- Master Data
- Applications
- Role Group
- Role User
- Role
- Position
- Division
- Level
- Assessment Design
- Meeting
- Participant
- Open
- Assessor
- Report
- Batch
- External Link
- Dummy
- Interview TaskGET
- LoginPOST
- Get Company SettingGET
- WEB
- Open API Engauge
Update Position
Developing
PUT
/rest/admin/secured/company/master-position/update/{positionId}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
positionId
string
required
Example:
JT001240
Body Params application/json
positionName
string
required
divisionId
string
required
levelId
string
required
Example
{
"positionName": "Spesialis Operasional Aplikasi Pratama",
"divisionId": "bpjs-28",
"levelId": "BOD4"
}
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/company/master-position/update/JT001240' \
--header 'Content-Type: application/json' \
--data-raw '{
"positionName": "Spesialis Operasional Aplikasi Pratama",
"divisionId": "bpjs-28",
"levelId": "BOD4"
}'
Responses
🟢200Success
application/json
Body
status
string
required
data
boolean
required
info
object
required
id
string
required
message
string
required
messageEn
null
required
messageId
null
required
field
null
required
redirect
null
required
Example
{
"status": "success",
"data": true,
"info": {
"id": "SUCCESS_EDIT_DATA",
"message": "Position successfully edited !",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}