SMART LOCKER API
  1. User
SMART LOCKER API
  • Web
    • Shifts
      • Shift List
      • Add Shift
      • Update Shift
      • Delete Shift
    • Shift Devices
      • Add Shift Device
      • List Shift Devices
      • Update Shift Device
      • Delete Shift Device
    • Device Management
      • Update Device
      • List Devices
      • Get Device
      • add device
      • edit device
      • delete device
      • devices status
    • Bay Management
      • List Bays
      • Assign Device to Bay
      • Assign User to Bay
      • Unassign Device
    • Locker Management
      • Locker List
      • Get Locker
      • LockerType
      • maintenance list
      • delete locker
    • User
      • User List
        GET
      • Get User
        GET
      • add user
        POST
      • user edit
        POST
      • user delete
        POST
    • Group
      • group add
      • group list
      • group view
      • group delete
    • Location
      • Location
      • location add
      • location edit
      • add area
    • Role
      • add role
      • edit role
      • list role
    • Admin Login
      POST
    • Kiosk Login
      POST
    • Country
      GET
    • log list
      GET
  • Smart Locker
    • Locker Status
      POST
    • Open Locker
      POST
    • Start charging
      POST
    • Stop Charging
      POST
    • Charging Status
      POST
  1. User

add user

Developing
POST
/api/user/add

Request

Body Params application/jsonRequired

Examples

Responses

🟠400Bad Request
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://smart-locker-api.byrokket.com/api/user/add' \
--header 'Content-Type: application/json' \
--data-raw '{
  "user_name": "Captain",
  "email_id": "captain@gmail.com",
  "employee_id": "003",
  "group_id": 2,
  "created_by": 1
}'
Response Response Example
{
    "status": "string",
    "message": {
        "user_name": "string",
        "email_id": "string",
        "employee_id": "string"
    }
}
Modified at 2025-11-07 11:16:01
Previous
Get User
Next
user edit
Built with