GET api/Configuration/ClientToClientTransferStatusTypes
Allows a user to get all existing Client To Client Transfer Status Types.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
The list of Client To Client Transfer Status Types.
Collection of ESignSystems.SmartSAFE.Models.Configuration.ClientToClientTransferStatusTypeModelName | Description | Type | Additional information |
---|---|---|---|
ClientToClientTransferStatusTypeId |
Gets or sets the client to client transfer status type identifier. |
integer |
None. |
LookupValue |
Gets or sets the client to client transfer status type's lookup value. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ClientToClientTransferStatusTypeId": 1, "LookupValue": "sample string 1" }, { "ClientToClientTransferStatusTypeId": 1, "LookupValue": "sample string 1" } ]
application/xml, text/xml
Sample:
<ArrayOfClientToClientTransferStatusTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Configuration"> <ClientToClientTransferStatusTypeModel> <ClientToClientTransferStatusTypeId>1</ClientToClientTransferStatusTypeId> <LookupValue>sample string 1</LookupValue> </ClientToClientTransferStatusTypeModel> <ClientToClientTransferStatusTypeModel> <ClientToClientTransferStatusTypeId>1</ClientToClientTransferStatusTypeId> <LookupValue>sample string 1</LookupValue> </ClientToClientTransferStatusTypeModel> </ArrayOfClientToClientTransferStatusTypeModel>