logo

Automatic Outbound Call to Obtain Work Time List

Request Address

  • GET /v1/workTimes/search/simple

Request Parameters

  • QUERY
ParameterTypeNullableDescription
pageNuminttruePage number
pageSizeinttrueNumber of items per page

Response Parameters

ParameterTypeNullableDescription
succeedbooleanfalseProcessing identifier
codeStringfalseReturn code
bizCodeStringfalseBusiness code
messageStringfalseReturn message
visiblebooleanfalseVisibility indicator
pagingObjectfalsePagination information
paging.pageNumintfalsePage number, default is 1
paging.pageSizeintfalseNumber of items per page, default is 20
paging.totalLongfalseTotal number of queries
dataArraytrueResult set
data[].idLongfalseWork time ID
data[].nameStringfalseWork time name

Request Example

$ curl 'http://localhost:8188/api/v1/workTimes/search/simple?pageNum=1&pageSize=2&AppId={appid}&Sid={Sid}&Timestamp={mytime}&Token={Token}' -i -X POST -H 'Content-Type: application/json'

Response Example

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Content-Length: 522

{
    "succeed": true,
    "code": 200,
    "bizCode": "000000",
    "message": "OK",
    "visible": false,
    "paging": {
        "pageNum": 1,
        "pageSize": 2,
        "total": 2
    },
    "data": [
        {
            "id": 1,
            "name": "Work Time 01"
        },
        {
            "id": 2,
            "name": "Work Time 02"
        }
    ]
}