Required correct JSON format
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2025 05:26 AM
Below is the JSON format that i am using in rest API explorer, but i have doubt that this is not correct JSON format, please check is there is any mistake and help me.
{
"records":
[
{
"from_date":"20191017T010000",
"to_date":"20191018T030000"
}
]
}
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-06-2025 05:53 AM
Hello @VIKAS MISHRA
Yes, the JSON you provided is valid. Here's the same data, formatted for readability:
{
"records": [
{
"from_date": "20191017T010000",
"to_date": "20191018T030000"
}
]
}
Hope this helps!
"If you found my answer helpful, please like and mark it as an "accepted solution". It helps future readers to locate the solution easily and supports the community!"
Thank You
Juhi Poddar