GET api/Account

Documentation for 'Get'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "AccountID": 1,
  "AccountCode": "sample string 2",
  "AccountName": "sample string 3",
  "AccountShowPriceOnPortal": true,
  "AccountPasswordPortal": "sample string 4",
  "Token": "sample string 5",
  "Expiration": "2026-02-25T13:38:18.7288901+01:00",
  "AccountDeliverDays": "sample string 6",
  "AccountDicountnumber": 7
}

application/xml, text/xml

Sample:
<Account xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MdrankonlineApi.Models">
  <AccountCode>sample string 2</AccountCode>
  <AccountDeliverDays>sample string 6</AccountDeliverDays>
  <AccountDicountnumber>7</AccountDicountnumber>
  <AccountID>1</AccountID>
  <AccountName>sample string 3</AccountName>
  <AccountPasswordPortal>sample string 4</AccountPasswordPortal>
  <AccountShowPriceOnPortal>true</AccountShowPriceOnPortal>
  <Expiration>2026-02-25T13:38:18.7288901+01:00</Expiration>
  <Token>sample string 5</Token>
</Account>