Click or drag to resize
ListTypesControllerInsert Method

[This is preliminary documentation and is subject to change.]

Adds a new List Type to the database. All required fields in the List Type should be filled out. Don't forget the List Type guid.

Namespace: WebServiceKit.Controllers
Assembly: WebServiceKit (in WebServiceKit.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public IHttpActionResult Insert(
	QueuedObject _qo
)

Parameters

_qo
Type: QueuedObject
The serialized List Type data (pulled from the request body).

Return Value

Type: IHttpActionResult
200 OK if the List Type is inserted, otherwise 400.
Remarks
The List Type must be formatted using XML or JSON depending on the client PUT. Call requires a valid login token. HTTP Method: PUT
[Route("api/listtypes/insert")]
See Also