GET v1/forms/{companyCode}/templates?apiToken={apiToken}
Returns a list of form templates associated with a specific company
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyCode |
The company this form template is associated with |
string |
Required |
| apiToken |
Your API Token |
string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of ObjectNone.
Response Formats
application/json, text/json
Sample:
[
{
"formIdentifier": "sample string 1",
"title": "sample string 2"
},
{
"formIdentifier": "sample string 1",
"title": "sample string 2"
}
]
application/xml, text/xml
Sample:
<FormTemplates xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<FormTemplate>
<FormIdentifier>sample string 1</FormIdentifier>
<Title>sample string 2</Title>
</FormTemplate>
<FormTemplate>
<FormIdentifier>sample string 1</FormIdentifier>
<Title>sample string 2</Title>
</FormTemplate>
</FormTemplates>