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| Name | Description | Type | Additional 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": "a66043a8-1c61-47ba-bdd8-e9956e76cd7a",
"Name": "sample string 2",
"Annotation": "sample string 3",
"ArticlePackageId": "84369d65-034b-4148-b9dc-e61348740c98"
},
{
"Id": "a66043a8-1c61-47ba-bdd8-e9956e76cd7a",
"Name": "sample string 2",
"Annotation": "sample string 3",
"ArticlePackageId": "84369d65-034b-4148-b9dc-e61348740c98"
}
]
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>84369d65-034b-4148-b9dc-e61348740c98</ArticlePackageId>
<Id>a66043a8-1c61-47ba-bdd8-e9956e76cd7a</Id>
<Name>sample string 2</Name>
</DebitModelResponse>
<DebitModelResponse>
<Annotation>sample string 3</Annotation>
<ArticlePackageId>84369d65-034b-4148-b9dc-e61348740c98</ArticlePackageId>
<Id>a66043a8-1c61-47ba-bdd8-e9956e76cd7a</Id>
<Name>sample string 2</Name>
</DebitModelResponse>
</ArrayOfDebitModelResponse>