Forms
Use this endpoint to obtain details on Adaptix's forms.
Get Form
HTTP Request
GET /forms/ID
Response
Expected Response Code: 200
See JSON code example.
Form Properties
Name | Type | Description |
---|---|---|
id | int | ID of the form |
name | string | Name of the form |
description | string/null | Description of the form |
alias | string | Used to generate the URL for the form |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the form should be published |
publishDown | datetime/null | Date/time the form should be un published |
dateAdded | datetime | Date/time form was created |
createdBy | int | ID of the user that created the form |
createdByUser | string | Name of the user that created the form |
dateModified | datetime/null | Date/time form was last modified |
modifiedBy | int | ID of the user that last modified the form |
modifiedByUser | string | Name of the user that last modified the form |
cachedHtml | string | Cached HTML for the form |
template | string/null | Name of the template used to generate the HTML |
fields | array | Array of Field entities for the form. See below. |
actions | array | Array of Action entities for the form. See below. |
Field Properties
Name | Type | Description |
---|---|---|
id | int | ID of the field |
label | string | Label of the field |
showLabel | bool | Display the label of the field |
alias | string | Alias of the field (used as the database column) |
type | string | Field type |
defaultValue | string | Default value |
isRequired | bool | Field is required |
validationMessage | string | Validation message if required field is left empty |
helpMessage | string | Help message for the field |
order | int | Order of the field |
properties | array | Configured properties for the field |
labelAttributes | string/null | Custom HTML attributes for the label |
inputAttributes | Custom HTML attributes for the input | |
containerAttributes | Custom HTML attributes for the container |
Action Properties
Name | Type | Description |
---|---|---|
id | int | ID of the action |
type | string | Action type |
name | string | Name of the action |
description | string/null | Description of the action |
order | int | Action order |
properties | array | Configured properties for the action |
List Forms
HTTP Request
GET /forms
Query Parameters
Name | Description |
---|---|
search | String or search command to filter entities by. |
start | Starting row for the entities returned. Defaults to 0. |
limit | Limit number of entities to return. Defaults to the system configuration for pagination (30). |
orderBy | Column to sort by. Can use any column listed in the response. |
orderByDir | Sort direction: asc or desc. |
publishedOnly | Only return currently published entities. |
minimal | Return only array of entities without additional lists in it. |
Response
Expected Response Code: 200
See JSON code example.
Properties
Same as Get Form.
Create Form
HTTP Request
POST /forms/new
Post Parameters
Same as Get Form. Form fields and actions can be created/edited via the forms/actions arrays in the form array.
Response
Expected Response Code: 201
Properties
Same as Get Form.
Edit Form
Make sure that whenever you want to edit a form field that you include the form field id in the request. Fields without an id are assumed to be new fields.
PUT creates a form if the given ID does not exist and clears all the form information, adds the information from the request. Form fields and actions will be also deleted if not present in the request. PATCH fails if the form with the given ID does not exist and updates the form field values with the values form the request.
HTTP Request
To edit a form and return a 404 if the form is not found:
PATCH /forms/ID/edit
To edit a form and create a new one if the form is not found:
PUT /forms/ID/edit
Post Parameters
Same as Get Form. Form fields and actions can be created/edited via the forms/actions arrays in the form array.
Response
If PUT
, the expected response code is 200
if the form was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Form.
Delete Form
Delete a form.HTTP Request
DELETE /forms/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Form.
Delete Form Fields
The following examples will show how to delete fields with ID 56 and 59.
Delete a form fields.HTTP Request
DELETE /forms/ID/fields/delete?fields[]=56&fields[]=59
Response
Expected Response Code: 200
Properties
Same as Get Form.
Delete Form Actions
The following examples will show how to delete actions with ID 56 and 59.
Delete a form actions.HTTP Request
DELETE /forms/ID/actions/delete?actions[]=56&actions[]=59
Response
Expected Response Code: 200
Properties
Same as Get Form.
List Form Submissions
HTTP Request
GET /forms/FORM_ID/submissions
Query Parameters
Name | Description |
---|---|
formId | ID of the form you want to get submissions for |
search | String or search command to filter entities by. |
start | Starting row for the entities returned. Defaults to 0. |
limit | Limit number of entities to return. Defaults to the system configuration for pagination (30). |
orderBy | Column to sort by. Can use any column listed in the response, also can use column of joined table with prefix. Sort by submitted date is s.date_submitted |
orderByDir | Sort direction: asc or desc. |
publishedOnly | Only return currently published entities. |
minimal | Return only array of entities without additional lists in it. |
Response
Expected Response Code: 200
See JSON code example.
Properties
Name | Type | Description |
---|---|---|
id | int | ID of the submission |
ipAddress | array | Associative array containing IP address of the client who made the submission |
form | array | Simplified associative array of the form containing id, name, alias and category |
lead | array | Associative array of the lead containing the core values as well as custom fields |
dateSubmitted | string | Date time string holding the UTC date and time when the submission was made |
referer | string | HTTP referer info |
results | array | Associative array of the form fields as the keys and submission values |
List Form Submissions for a contact
HTTP Request
GET /forms/FORM_ID/submissions/contact/CONTACT_ID
Response and properties same as Get Form Submissions. Parameters too except the ContactId was added.
Get Form Submission
HTTP Request
GET /forms/FORM_ID/submissions/SUBMISSION_ID
Response
Expected Response Code: 200
See JSON code example.
Form Properties
Same as Get Form Submissions.