GET api/transactionableCategories/{transactionableCategoryID}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
transactionableCategoryID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
TransactionableCategoryDataName | Description | Type | Additional information |
---|---|---|---|
Code | string |
None. |
|
Name | string |
None. |
|
IsForSale | boolean |
None. |
|
ModifiedOn | date |
None. |
|
Deleted | boolean |
None. |
|
ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "Code": "sample string 1", "Name": "sample string 2", "IsForSale": true, "ModifiedOn": "2025-08-02T19:19:04.849034+00:00", "Deleted": true, "ID": 1 }
text/xml
Sample:
<TransactionableCategoryData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data"> <ID>1</ID> <Deleted xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data.Storage">true</Deleted> <ModifiedOn xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data.Storage">2025-08-02T19:19:04.849034+00:00</ModifiedOn> <Code>sample string 1</Code> <IsForSale>true</IsForSale> <Name>sample string 2</Name> </TransactionableCategoryData>