POST api/configuration/AutoImportPlan/CDRFilenameFormat

Creates an auto import plan CDRFilenameFormat

Request Information

URI Parameters

None.

Body Parameters

CDRFilenameFormatUpdate
NameDescriptionTypeAdditional information
Name string

Required

String length: inclusive between 0 and 50

Format string

String length: inclusive between 0 and 1000

Zipped boolean

None.

CDRType string

Required

String length: inclusive between 0 and 50

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Format": "sample string 2",
  "Zipped": true,
  "CDRType": "sample string 4"
}

application/xml, text/xml

Sample:
<CDRFilenameFormatUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aBILLity.API.Models">
  <CDRType>sample string 4</CDRType>
  <Format>sample string 2</Format>
  <Name>sample string 1</Name>
  <Zipped>true</Zipped>
</CDRFilenameFormatUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CDRFilenameFormatPOSTResult
NameDescriptionTypeAdditional information
ID integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1
}

application/xml, text/xml

Sample:
<CDRFilenameFormatPOSTResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/aBILLity.API.Models">
  <ID>1</ID>
</CDRFilenameFormatPOSTResult>