So far all I've been working with is receiving data from an restAPI using json in objective-c (using SBJson classes). I am now attempting to send post data but I have no experience with it. The raw body looks something like the following:
//http://www.myapi.com/api/user=123
"Username": "foo",
"Title": null,
"FirstName": "Nick",
"MiddleInitial": null,
"LastName": "Foos",
"Suffix": null,
"Gender": "M",
"Survey": {
"Height": "4'.1\"",
"Weight": 100,
}
What would be the best way this type of data?