πŸ˜ƒSatisfaction survey

GET https://{API_DOMAIN}/api/v1/csat-score
curl -X GET
    -H "Content-Type: application/json"
    https://{API_HOST}/api/v1/csat-score

Form Data

The table below lists available filter conditions

PARAMETER

REQUIRED

DEFAULT

TYPE

DESCRIPTION

score__lower

false

Null

Number

Minimum satisfaction score range

score__upper

false

Null

Number

Maximum satisfaction score range

created_at__start

false

Null

Datetime

Satisfaction submission start time

created_at__end

false

Null

Datetime

Satisfaction submission end time

Response

PROPERTY

TYPE

DESCRIPTION

data

Array of objects

Array objects

meta

Object

Pagination data

{
    "data": [
        {
            "id": 1,
            "contactable_id": 100,
            "contactable_type": "App\\LivechatContact",
            "contact_log_id": 459,
            "handler": {
                "id": 1,
                "name": "alice chang"
            },
            "memo": null,
            "score": 5,
            "created_at": "2021-01-08 19:00:24",
            "updated_at": "2021-01-08 19:00:24"
        },
        {
            "id": 2,
            "contactable_id": 99,
            "contactable_type": "App\\LivechatContact",
            "contact_log_id": 460,
            "handler": {
                "id": 1,
                "name": "alice chang"
            },
            "memo": null,
            "score": 4,
            "created_at": "2021-01-09 12:38:34",
            "updated_at": "2021-01-09 12:38:34"
        }
    ]
}

Last updated