POST api/v1/datalists

Creates a new data list with the information provided in the .

Request Information

URI Parameters

None.

Body Parameters

CreateDataListDto
NameDescriptionTypeAdditional information
Name

string

None.

FlushOnUse

boolean

None.

SchemaId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "FlushOnUse": true,
  "SchemaId": "ef1b794b-f216-4ba0-aaa5-4a61e3064ee2"
}

application/xml, text/xml

Sample:
<CreateDataListDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Api.Models">
  <FlushOnUse>true</FlushOnUse>
  <Name>sample string 1</Name>
  <SchemaId>ef1b794b-f216-4ba0-aaa5-4a61e3064ee2</SchemaId>
</CreateDataListDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.