Error in flow designer for unexpected character
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2024 10:20 AM
I
have a reference field deaprtment having the below value Unit Ground Floor,"C" Block,
I used Submit Catalog Item Request and try to create a ticket but it shows below error
Caused by: Unexpected character (C) at position 3701.
Please help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2024 02:49 PM
Hi @JPSS ,
Please post the screenshot of your configuration.
If I could help you with your Query then, please hit the Thumb Icon and mark it as Correct !!
Thanks & Regards,
Sumanth Meda
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-17-2024 12:03 AM - edited 03-17-2024 12:04 AM
Hi @JPSS
I think the correct format would be-
{
"department": "Unit Ground Floor, \"C\" Block,"
}
Please check if it works. Then you can stringify as below-
var departmentValue = 'Unit Ground Floor, "C" Block,';
var payload = {
"department": JSON.stringify(departmentValue)
};
Regards,
Amit