POST api/TallyURL

Request Information

URI Parameters

None.

Body Parameters

TallyPayLoadModels
NameDescriptionTypeAdditional information
CompID

string

None.

BranchID

string

None.

FYear

string

None.

ProductName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CompID": "sample string 1",
  "BranchID": "sample string 2",
  "FYear": "sample string 3",
  "ProductName": "sample string 4"
}

application/xml, text/xml

Sample:
<TallyPayLoadModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ImpexEasywayAPI.Models">
  <BranchID>sample string 2</BranchID>
  <CompID>sample string 1</CompID>
  <FYear>sample string 3</FYear>
  <ProductName>sample string 4</ProductName>
</TallyPayLoadModels>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of TallyModels
NameDescriptionTypeAdditional information
TallyURL

string

None.

TallyPORTNo

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TallyURL": "sample string 1",
    "TallyPORTNo": "sample string 2"
  },
  {
    "TallyURL": "sample string 1",
    "TallyPORTNo": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTallyModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ImpexEasywayAPI.Models">
  <TallyModels>
    <TallyPORTNo>sample string 2</TallyPORTNo>
    <TallyURL>sample string 1</TallyURL>
  </TallyModels>
  <TallyModels>
    <TallyPORTNo>sample string 2</TallyPORTNo>
    <TallyURL>sample string 1</TallyURL>
  </TallyModels>
</ArrayOfTallyModels>