GET api/ReceiptBook/GetDetailReceiptBookCategory?receiptBookCategoryServiceId={receiptBookCategoryServiceId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| receiptBookCategoryServiceId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ReceiptBookCategoryDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Icon | string |
None. |
|
| Name | string |
None. |
|
| Color | string |
None. |
|
| Type | integer |
None. |
|
| ParentId | integer |
None. |
|
| Money | decimal number |
None. |
|
| Note | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "a63c13e9-a4f2-4a7e-b0ef-72acf0c2a6c4",
"Icon": "sample string 2",
"Name": "sample string 3",
"Color": "sample string 4",
"Type": 5,
"ParentId": 6,
"Money": 7.0,
"Note": "sample string 8"
}
application/xml, text/xml
Sample:
<ReceiptBookCategoryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Model.Dto.ReceiptBook"> <Color>sample string 4</Color> <Icon>sample string 2</Icon> <Id>a63c13e9-a4f2-4a7e-b0ef-72acf0c2a6c4</Id> <Money>7</Money> <Name>sample string 3</Name> <Note>sample string 8</Note> <ParentId>6</ParentId> <Type>5</Type> </ReceiptBookCategoryDto>