Retrieve call history entry.
GET
/show
Path parameters
-
access_tokenstring
required
token to be passed as a header -
idinteger
required
The call history entry id.
Sample Request
curl -v -X GET http://127.0.0.1:8990/api/call_logs/show \
-H "Content-Type: application/json" \
-H "access_token: 4DFCF1D4C30B4D798ECE3AE43769F008" \
Responses
200
Successful operation
application/json
-
countinteger
count. example: 1 -
targetsarray
Show child attributes -
idinteger
The call history entry ID.
Sample Response
{
"id": 111
}
Retrieve a collection of call history entry.
GET
/search
Retrieve a collection of call history entry.
Path parameters
-
access_tokenstring
required
token to be passed as a header -
paginationinteger
required
The pagination of paging. -
pagesizeinteger
required
The size of paging. -
sort_bystring
optional
Values include "DEFAULT" and "Optional". Default value will be used when user does not specify value for this field. -
countsinteger
optional
counts. -
start_timestring
optional
start time -
end_timestring
optional
end time -
conditionstring
optional
search condition.
Sample Request
curl -v -X GET http://127.0.0.1:8990/api/call_logs/search \
-H "Content-Type: application/json" \
-H "access_token: 4DFCF1D4C30B4D798ECE3AE43769F008" \
Responses
200
Successful operation
application/json
-
pagesizeinteger
-
countinteger
-
paginationinteger
-
detailsarray
Show child attributes -
sort_bystring
Sample Response
{
"pagesize": 10,
"count": 100,
"pagination": 8,
"sort_by": "DEFAULT"
}
Retrieve a collection of call history entry.
GET
/list
Retrieve a collection of call history entry.
Path parameters
-
access_tokenstring
required
token to be passed as a header -
paginationinteger
required
The pagination of paging. -
pagesizeinteger
required
The size of paging. -
sort_bystring
optional
Values include "DEFAULT" and "Optional". Default value will be used when user does not specify value for this field. -
countsinteger
optional
counts. -
start_timestring
optional
start time -
end_timestring
optional
end time -
extensionstring
optional
search condition.
Sample Request
curl -v -X GET http://127.0.0.1:8990/api/call_logs/list \
-H "Content-Type: application/json" \
-H "access_token: 4DFCF1D4C30B4D798ECE3AE43769F008" \
Responses
200
Successful operation
application/json
-
pagesizeinteger
-
countinteger
-
paginationinteger
-
detailsarray
Show child attributes -
sort_bystring
Sample Response
{
"pagesize": 10,
"count": 100,
"pagination": 8,
"sort_by": "DEFAULT"
}