GET api/SmartTransfer/TransactionTypes
Allows a user to get all the SmartTRANSFER transaction types.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of transaction types.
Collection of ESignSystems.SmartSAFE.Models.LookupItemModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Gets or sets the identifier of the eRegistry transaction request type. |
integer |
None. |
| LookupValue |
Gets or sets the lookup value of the eRegistry request type. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"LookupValue": "sample string 1"
},
{
"Id": 1,
"LookupValue": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfLookupItemModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">
<LookupItemModel>
<Id>1</Id>
<LookupValue>sample string 1</LookupValue>
</LookupItemModel>
<LookupItemModel>
<Id>1</Id>
<LookupValue>sample string 1</LookupValue>
</LookupItemModel>
</ArrayOfLookupItemModel>