GET api/DebitModels

Gets all debit models.

Request Information

URI Parameters

None.

Body Parameters

None.

Remarks

None.

Example

None.

Response Information

Resource Description

List of DebitModelResponse.

Collection of DebitModelResponse
NameDescriptionTypeAdditional information
Id

globally unique identifier

Required

Name

string

Required

Max length: 40

Annotation

string

None.

ArticlePackageId

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": "f8b5db24-34d8-475c-b58e-ba18647c57f3",
    "Name": "sample string 2",
    "Annotation": "sample string 3",
    "ArticlePackageId": "5276c2d1-f0be-4dd7-9634-ced21959ccae"
  },
  {
    "Id": "f8b5db24-34d8-475c-b58e-ba18647c57f3",
    "Name": "sample string 2",
    "Annotation": "sample string 3",
    "ArticlePackageId": "5276c2d1-f0be-4dd7-9634-ced21959ccae"
  }
]

application/xml, text/xml

Sample:
<ArrayOfDebitModelResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.TyreHotel">
  <DebitModelResponse>
    <Annotation>sample string 3</Annotation>
    <ArticlePackageId>5276c2d1-f0be-4dd7-9634-ced21959ccae</ArticlePackageId>
    <Id>f8b5db24-34d8-475c-b58e-ba18647c57f3</Id>
    <Name>sample string 2</Name>
  </DebitModelResponse>
  <DebitModelResponse>
    <Annotation>sample string 3</Annotation>
    <ArticlePackageId>5276c2d1-f0be-4dd7-9634-ced21959ccae</ArticlePackageId>
    <Id>f8b5db24-34d8-475c-b58e-ba18647c57f3</Id>
    <Name>sample string 2</Name>
  </DebitModelResponse>
</ArrayOfDebitModelResponse>