Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"positionName": "Spesialis Operasional Aplikasi Pratama",
"divisionId": "bpjs-28",
"levelId": "BOD4"
}
Request Code Samples
curl --location --request POST 'https://service-dash.dlabssaas.io/rest/admin/secured/company/master-position/save' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"positionName": "Spesialis Operasional Aplikasi Pratama",
"divisionId": "bpjs-28",
"levelId": "BOD4"
}'
Responses
application/json {
"status": "success",
"data": true,
"info": {
"id": "SUCCESS_ADD_DATA",
"message": "Position successfully added !",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}
Modified at 2024-07-29 01:58:01