GET api/Configuration/EVaultActivityTypes

Allows a user to get all existing eVault activity types.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

The list of eVault activity types.

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

Gets or sets the identifier of the eVault activity type.

integer

None.

LookupValue

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