Update User Bulk

This end point is use for update users

[POST] /ruangkerja/users/update-bulk

Information

This API is a function for update multiple users in single operation by employee id as parameter.

Headers

NameTypeExampleRequiredDescription
Authorizationstringaccess_tokenYESToken of authentication. Get from Authentication API
Acceptstringapplication/jsonYESDefines the message format that is expected by the client
Content-Typestringapplication/jsonYESDefines the message format of the request body that is sent by the client

Parameter

NameTypeRequiredLocationDescription
employeeIDstringYESbodyEmployee ID of user. Allowed format: Alphabet (a-z, A-Z), Numeric (0-9)
namestringYESbodyName of user
newEmployeeIDstringOPTIONALbodyNew employee ID field is for change the employee ID. Allowed format: Alphabet (a-z, A-Z), Numeric (0-9)
usernamestringOPTIONALbodyUsername is used by users to sign in. Allowed format: Alphabet (a-z,A-Z) Numerical (0-9)
phonestringOPTIONALbodyPhone of user. Phone is required if email empty
isActiveboolYESbodyStatus of user
tagSerials[]stringOPTIONALbodyTag serials

Example cURL Request

curl --location --request POST 'https://api.ruangkerja.id/ruangkerja/users/update-bulk' \
--header 'Authorization: access_token' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
    "items": [
        {
            "employeeID": "EMPLY001",
            "name": "John Doe",
            "newEmployeeID": null,
            "username": null,
            "phone": "6281122334455",
            "isActive": true,
            "tagSerials": ["RUKRTAG-9WHL0JGP"]
        }
    ]
}'

Example Success Response

{
    "data": {
        "failedItems": [],
        "successItems": [
            {
                "payload": {
                    "employeeID": "EMPLY001",
                    "name": "John Doe",
                    "newEmployeeID": null,
                    "username": null,
                    "phone": "6281122334455",
                    "isActive": true,
                    "tagSerials": ["RUKRTAG-9WHL0JGP"]
                },
                "response": {
                    "serial": "OPENAPI9Z7ZIHIFW"
                }
            }
        ]
    },
    "status": "success",
    "message": "success"
}

Example Failed Response

{
    "data": {
        "failedItems": [
            {
                "error": {
                    "detail": "employee id already been taken",
                    "errorCode": 10101,
                    "message": "USER_EMPLOYEE_ID_EXISTS"
                },
                "payload": {
                    "employeeID": "EMPLY001",
                    "name": "John Doe",
                    "newEmployeeID": null,
                    "username": null,
                    "phone": "6281122334455",
                    "isActive": true,
                    "tagSerials": ["RUKRTAG-9WHL0JGP"]
                }
            }
        ],
        "successItems": []
    },
    "status": "success",
    "message": "success"
}

See also: Error Dictionary.