Hey Felicia!
I had a similar problem and a nice member of this community helped me get it sorted. I saved the answer just in case—hopefully it will help you as well. Props to that person, if they see this!
Go into the segment with the error state and fetch the segment ID. Open up Chrome DevTools (F12) and go to console. Add your segment ID into the code below, then copy and paste into the console.
var data = { "statuscode": 192350000 }
var request = await fetch("/api/data/v9.0/msdyncrm_segments(PUT SEGMENT ID HERE)", {"method": "PATCH", "headers": {"content-type": "application/json"}, "body": JSON.stringify(data)});
console.log(request.status);