GET | /FormFiller/GetTemplateList | Gets form filler template list | Gets a list of templates available for an account. Returns a collection of templates required for sending. |
---|
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /FormFiller/GetTemplateList HTTP/1.1 Host: api.securedsigning.com Accept: application/xml
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <ArrayOfFormFillerTemplate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SecuredSigning.Api.Rest.Models"> <FormFillerTemplate> <ClientReference>String</ClientReference> <Fields> <FormFillerField> <ClientField>String</ClientField> <FieldType>Text</FieldType> <ID>String</ID> <IsRequired>false</IsRequired> <Label>String</Label> <ReadOnly>false</ReadOnly> <Reference>String</Reference> <Value>String</Value> </FormFillerField> </Fields> <Name>String</Name> <Reference>String</Reference> <Signers> <Signer> <Email>String</Email> <FirstName>String</FirstName> <LastName>String</LastName> <MiddleName>String</MiddleName> <ClientReference>String</ClientReference> <MobileCountry>String</MobileCountry> <MobileNumber>String</MobileNumber> <ShareUsers> <ShareUser> <Email>String</Email> <FirstName>String</FirstName> <LastName>String</LastName> <MiddleName>String</MiddleName> <IsDefault>false</IsDefault> <IsOwner>false</IsOwner> </ShareUser> </ShareUsers> <IsFaceToFaceSigning>false</IsFaceToFaceSigning> <ReviewBeforeSigningEnabled>false</ReviewBeforeSigningEnabled> <SignerReference>String</SignerReference> <VideoConfirmationEnabled>false</VideoConfirmationEnabled> </Signer> </Signers> </FormFillerTemplate> </ArrayOfFormFillerTemplate>