GET api/DebitModels/{id}

Gets a debit model by id.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Debit model id.

globally unique identifier

Required

Body Parameters

None.

Remarks

None.

Example

None.

Response Information

Resource Description

DebitModelResponse

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": "4da708cc-bb8f-42ed-b85d-2380cb6b8f39",
  "Name": "sample string 2",
  "Annotation": "sample string 3",
  "ArticlePackageId": "6cbe2c83-1100-4b75-885d-b84e28467bb7"
}

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>6cbe2c83-1100-4b75-885d-b84e28467bb7</ArticlePackageId>
  <Id>4da708cc-bb8f-42ed-b85d-2380cb6b8f39</Id>
  <Name>sample string 2</Name>
</DebitModelResponse>