Hi,
I have a method dbAddress for normal CRUD functionality. When I do an insert (POST with content application/json in the body) for multiple records, it works fine.
But I want to pass extra values to the method as well. It only works when the values are passed in the URL, which I don't want to. When it's added to the header, it doesn't receive the value. The only option is to add it to the JSON in the body, but I can't seem to get the formatting right - can extra values be added via the JSON in the body?
The JSON in the body looks like this:
{"Address":[
{
"guid":"",
"description":"First address",
"physicaladdress":"1 Short Street, Centurion",
"postaladdress":"P.O.Box 1234, Centurion"
},
{
"guid":"",
"description":"Second address",
"physicaladdress":"2 Long Street, Centurion",
"postaladdress":"P.O.Box 7, Centurion"
}
]
}
Thanks
Thys