GET api/Configuration/SigningRoomActionTypes

Allows a user to get all existing SigningRoom action types.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

The list of SigningRoom action types.

Collection of ESignSystems.SmartSAFE.Models.Configuration.SigningRoomActionTypeModel
NameDescriptionTypeAdditional information
Id

Gets or sets the identifier of the SigningRoom action type.

integer

None.

LookupValue

Gets or sets the SigningRoom action 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:
<ArrayOfSigningRoomActionTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Configuration">
  <SigningRoomActionTypeModel>
    <Id>1</Id>
    <LookupValue>sample string 1</LookupValue>
  </SigningRoomActionTypeModel>
  <SigningRoomActionTypeModel>
    <Id>1</Id>
    <LookupValue>sample string 1</LookupValue>
  </SigningRoomActionTypeModel>
</ArrayOfSigningRoomActionTypeModel>