ListValuesControllerInsertValue Method |
[This is preliminary documentation and is subject to change.]
Adds a new List Value to the database. All required fields in the List Value should be filled out.
Don't forget the ListTypeGuid and ListColumnGuid guids.
Namespace: WebServiceKit.ControllersAssembly: WebServiceKit (in WebServiceKit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic IHttpActionResult InsertValue(
QueuedObject _qo,
bool randomize = false
)
Public Function InsertValue (
_qo As QueuedObject,
Optional randomize As Boolean = false
) As IHttpActionResult
public:
IHttpActionResult^ InsertValue(
QueuedObject^ _qo,
bool randomize = false
)
member InsertValue :
_qo : QueuedObject *
?randomize : bool
(* Defaults:
let _randomize = defaultArg randomize false
*)
-> IHttpActionResult
Parameters
- _qo
- Type: QueuedObject
The serialized List Value data (pulled from the request body). - randomize (Optional)
- Type: SystemBoolean
True if the internal instance guids in the list value should be randomized.
Return Value
Type:
IHttpActionResult200 OK if the list value is inserted, otherwise 400.
Remarks
The List Value must be formatted using XML or JSON depending on the client PUT. Call requires a valid login token.
HTTP Method: PUT
[Route("api/listvalues/insert")]
See Also