GET api/payers/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Payer
NameDescriptionTypeAdditional information
PayerId

integer

None.

PayerAlias

string

None.

PayerAddress

string

None.

PayerTown

string

None.

PayerCountry

string

None.

PayerCountryId

integer

None.

PayerAFM

string

None.

PayerTaxOffice

string

None.

PayerJob

string

None.

PayerPhone

string

None.

PayerFax

string

None.

PayerZipCode

string

None.

Response Formats

application/json, text/json

Sample:
{
  "PayerId": 1,
  "PayerAlias": "sample string 2",
  "PayerAddress": "sample string 3",
  "PayerTown": "sample string 4",
  "PayerCountry": "sample string 5",
  "PayerCountryId": 6,
  "PayerAFM": "sample string 7",
  "PayerTaxOffice": "sample string 8",
  "PayerJob": "sample string 9",
  "PayerPhone": "sample string 10",
  "PayerFax": "sample string 11",
  "PayerZipCode": "sample string 12"
}

application/xml, text/xml

Sample:
<Payer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Atlantis.Library.Web.Models">
  <PayerAFM>sample string 7</PayerAFM>
  <PayerAddress>sample string 3</PayerAddress>
  <PayerAlias>sample string 2</PayerAlias>
  <PayerCountry>sample string 5</PayerCountry>
  <PayerCountryId>6</PayerCountryId>
  <PayerFax>sample string 11</PayerFax>
  <PayerId>1</PayerId>
  <PayerJob>sample string 9</PayerJob>
  <PayerPhone>sample string 10</PayerPhone>
  <PayerTaxOffice>sample string 8</PayerTaxOffice>
  <PayerTown>sample string 4</PayerTown>
  <PayerZipCode>sample string 12</PayerZipCode>
</Payer>