GET api/Entities/GetVAROverrideBillingStructureID?varCode={varCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
varCode

string

Required

Body Parameters

None.

Response Information

Resource Description

BillingStructureToVARDefault
NameDescriptionTypeAdditional information
POLiEntityID

globally unique identifier

None.

EntityCode

string

None.

EntityCommonName

string

None.

DefaultBillingStructureID

integer

None.

DefaultBillingStructureName

string

None.

NumberOfDaysFeeFree

integer

None.

BillingStructuresList

Collection of ListItemOfInt32

None.

Response Formats

application/json, text/json

Sample:
{
  "POLiEntityID": "f2017b92-3103-46a2-9072-766f1c9c492e",
  "EntityCode": "sample string 2",
  "EntityCommonName": "sample string 3",
  "DefaultBillingStructureID": 4,
  "DefaultBillingStructureName": "sample string 5",
  "NumberOfDaysFeeFree": 6,
  "BillingStructuresList": [
    {
      "GuidIdentity": "d7792201-90fb-4dbd-9b6a-e84e78983bb9",
      "Code": 1,
      "Name": "sample string 2",
      "Tag": "sample string 3"
    },
    {
      "GuidIdentity": "d7792201-90fb-4dbd-9b6a-e84e78983bb9",
      "Code": 1,
      "Name": "sample string 2",
      "Tag": "sample string 3"
    }
  ]
}

application/xml, text/xml

Sample:
<BillingStructureToVARDefault xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ConsoleAPI.Internal.Models.BillingStructure">
  <BillingStructuresList xmlns:d2p1="http://schemas.datacontract.org/2004/07/ConsoleAPI.Internal.Models">
    <d2p1:ListItemOfint>
      <d2p1:Code>1</d2p1:Code>
      <d2p1:GuidIdentity>d7792201-90fb-4dbd-9b6a-e84e78983bb9</d2p1:GuidIdentity>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:Tag>sample string 3</d2p1:Tag>
    </d2p1:ListItemOfint>
    <d2p1:ListItemOfint>
      <d2p1:Code>1</d2p1:Code>
      <d2p1:GuidIdentity>d7792201-90fb-4dbd-9b6a-e84e78983bb9</d2p1:GuidIdentity>
      <d2p1:Name>sample string 2</d2p1:Name>
      <d2p1:Tag>sample string 3</d2p1:Tag>
    </d2p1:ListItemOfint>
  </BillingStructuresList>
  <DefaultBillingStructureID>4</DefaultBillingStructureID>
  <DefaultBillingStructureName>sample string 5</DefaultBillingStructureName>
  <NumberOfDaysFeeFree>6</NumberOfDaysFeeFree>
  <EntityCode>sample string 2</EntityCode>
  <EntityCommonName>sample string 3</EntityCommonName>
  <POLiEntityID>f2017b92-3103-46a2-9072-766f1c9c492e</POLiEntityID>
</BillingStructureToVARDefault>