Search Users by UserId

Search users

GET /api/users

Access Permissions

MASTER

마스터

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Parameters

Name
Type
Description

Pageable

Pageable

페이징 처리 객체

keyword

String

userId 검색 키워드

Response

[
  {
    "id": 1,
    "userId": "baedal123",
    "userName": "김배달",
    "phoneNumber": "010-1234-1234",
    "userRole": "Shipper"
  },
  {
    "id": 2,
    "userId": "baedal124",
    "userName": "최배달",
    "phoneNumber": "010-1234-1235",
    "userRole": "Shipper"
  }
]

Last updated