I want to use a POST API call to send my custom data type as a JSON list.
Where can I find the documentation?
I want to use a POST API call to send my custom data type as a JSON list.
Where can I find the documentation?
I don't see any documentation on how to map. I have tried to set the custom data type to JSON but this does not work, it looks like nothing is being passed.
When I hardcode the parameters when testing, it works. I do not know what I am missing.
{
"SampleList": [{"sampleID":"sample1","samplePoint":"Point A","dateTimeSampled":"2024-09-25T15:30:00Z","sampleType":"Water","notes":"Collected during rainfall"}, {"sampleID":"002","samplePoint":"Point B","dateTimeSampled":"2024-09-25T16:00:00Z","sampleType":"Water","notes":"Clear weather"}]
}
PLease help met