ListTypesControllerInsertGroup Method |
[This is preliminary documentation and is subject to change.]
Adds a new List Type Group to the database. All required fields in the List Type Group should be filled out.
Don't forget the List Type Group guid.
Namespace: WebServiceKit.ControllersAssembly: WebServiceKit (in WebServiceKit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic IHttpActionResult InsertGroup(
QueuedObject _qo
)
Public Function InsertGroup (
_qo As QueuedObject
) As IHttpActionResult
public:
IHttpActionResult^ InsertGroup(
QueuedObject^ _qo
)
member InsertGroup :
_qo : QueuedObject -> IHttpActionResult
Parameters
- _qo
- Type: QueuedObject
The serialized List Type Group data (pulled from the request body).
Return Value
Type:
IHttpActionResult200 OK if the List Type Group is inserted, otherwise 400.
Remarks
The List Type Group must be formatted using XML or JSON depending on the client PUT. Call requires a valid login token.
HTTP Method: PUT
[Route("api/listtypes/groups/insert")]
See Also