GET api/Configuration/SigningRoomActivityTypes
Allows a user to get all existing SigningRoom activity types.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
The list of SigningRoom activity types.
Collection of ESignSystems.SmartSAFE.Models.Configuration.SigningRoomActivityTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Gets or sets the identifier of the SigningRoom activity type. |
integer |
None. |
| LookupValue |
Gets or sets the SigningRoom activity type's lookup value. |
string |
Required Max length: 256 |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"LookupValue": "sample string 1"
},
{
"Id": 1,
"LookupValue": "sample string 1"
}
]
application/xml, text/xml
Sample:
<ArrayOfSigningRoomActivityTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Configuration">
<SigningRoomActivityTypeModel>
<Id>1</Id>
<LookupValue>sample string 1</LookupValue>
</SigningRoomActivityTypeModel>
<SigningRoomActivityTypeModel>
<Id>1</Id>
<LookupValue>sample string 1</LookupValue>
</SigningRoomActivityTypeModel>
</ArrayOfSigningRoomActivityTypeModel>