Hi,
the current info of the test case is as below:
URL: /index.php?/api/v2/update_case/92571122
{ "id": 92571122, "title": "Add passenger details", "custom_testtype": [80] }
The below details need to be updated for a test case.
URL: /index.php?/api/v2/update_case/92571122
{ "custom_testtype": [100] }
custom_testtype is a multiple selection type which can have values like 80,90,100 which are configured.
Instead of updating the custom_testtype field, it is overwriting it.
Expected Output is:
{ "id": 92571122, "title": "Add passenger details", "custom_testtype": [80,100] }
Can you please let me know how to update an multiple selection values without overwriting it?