curl --location --request GET 'https://api.e-satisfaction.com/v3.2/q/export' \
--header 'Content-Type: application/json' \
--data-raw '{
"questionnaire_id": "string",
"filter_by": {
"EQUAL": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"NOT_EQUAL": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"null": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"NOT_NULL": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"GREATER_THAN": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"LESS_THAN": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"GREATER_EQUAL": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"LESS_EQUAL": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"LIKE": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"NOT_LIKE": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"IN": [
{
"COLUMN_NAME": "VALUE_NAME"
}
],
"NOT_IN": [
{
"COLUMN_NAME": "VALUE_NAME"
}
]
},
"order_by": {
"ASC": [
"string"
],
"DESC": [
"string"
]
},
"pagination": {
"page": 1,
"max_per_page": 1,
"include_results": true
}
}'{
"page": 0,
"max_per_page": 0,
"last_page": 0,
"total_results": 0,
"results": [
{
"export_id": "string",
"questionnaire_id": "string",
"status": "string",
"from_date": "string",
"to_date": "string",
"file_format": "string",
"export_data": "string",
"columns": "string",
"result_file_id": "string",
"result": "string",
"started_time": "string",
"finished_time": "string",
"created_time": "string",
"updated_time": "string",
"created_by": "string",
"updated_by": "string"
}
]
}