Below is the code snippet where i need to pass the change_task objects in the query params for the POST request. how can i achieve this without adding it in the body ?
"change_task": [
{
"change_task_type": "Validation",
"planned_start_date": "2022-09-29T20:30:00",
"assignment_group": "CSRT_L2_Support",
"planned_end_date": "2022-09-30T02:30:00",
"short_description": "Test validation",
"description": "test Validation task"
},
{
"change_task_type": "Implementation",
"planned_start_date": "2022-09-29T20:30:00",
"assignment_group": "CSRT_L2_Support",
"planned_end_date": "2022-09-30T02:30:00",
"short_description": "test implementation",
"description": "test implementation task"
}
]