Retrieve call history entry.

GET /show
Path parameters
  • access_token

    string

    required

    token to be passed as a header

    minLength: 64

    maxLength: 64

  • id

    integer

    required

    The call history entry id.

    format : int64

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
  • count

    integer

    count. example: 1
  • targets

    array

    Show child attributes
  • id

    integer

    The call history entry ID.

    format : int64

Sample Response

                      
{
    "id": 111
}
                      
                    

Retrieve a collection of call history entry.

GET /list
Retrieve a collection of call history entry.
Path parameters
  • access_token

    string

    required

    token to be passed as a header

    minLength: 64

    maxLength: 64

  • pagination

    integer

    required

    The pagination of paging.

    format : int32

  • pagesize

    integer

    required

    The size of paging.
  • sort_by

    string

    optional

    Values include "DEFAULT" and "Optional". Default value will be used when user does not specify value for this field.

    enum : ['DEFAULT', 'OPTIONAL']

  • counts

    integer

    optional

    counts.
  • start_time

    string

    optional

    start time

    format : date-time

  • end_time

    string

    optional

    end time

    format : date-time

  • extension

    string

    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
  • pagesize

    integer

  • count

    integer

  • pagination

    integer

  • details

    array

    Show child attributes
  • sort_by

    string

Sample Response

                      
{
    "pagesize": 10,
    "count": 100,
    "pagination": 8,
    "sort_by": "DEFAULT"
}