I\'m having a bit of trouble structuring my parameters so that our server API would be able to read it as valid JSON.
Alamofire uses parameters like this in swift la
You need to create a NSArray object for array parameters.
var yourParameters = [ "String": "a string", "Int": 1, "Array": NSArray( array: [ "a", "b", "c" ]) ]