GET api/DebitModels/{id}
Gets a debit model by id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Debit model id. |
globally unique identifier |
Required |
Body Parameters
None.
Remarks
None.
Example
None.
Response Information
Resource Description
DebitModelResponse
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": "457cd41a-d9bb-48bf-8ced-348ba8066dd2",
"Name": "sample string 2",
"Annotation": "sample string 3",
"ArticlePackageId": "26b5543a-ac0a-463b-8013-73badac7ff61"
}
application/xml, text/xml
Sample:
<DebitModelResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.TyreHotel"> <Annotation>sample string 3</Annotation> <ArticlePackageId>26b5543a-ac0a-463b-8013-73badac7ff61</ArticlePackageId> <Id>457cd41a-d9bb-48bf-8ced-348ba8066dd2</Id> <Name>sample string 2</Name> </DebitModelResponse>