Fields
Use this endpoint to work with Adaptix's contact/company fields.
Get Field
HTTP Request
GET /fields/contact/ID
or GET /fields/company/ID
Response
Expected Response Code: 200
See JSON code example.
Field Properties
Name | Type | Description |
---|---|---|
id | int | ID of the field |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the field should be published |
publishDown | datetime/null | Date/time the field should be un published |
dateAdded | datetime | Date/time field was created |
createdBy | int | ID of the user that created the field |
createdByUser | string | Name of the user that created the field |
dateModified | datetime/null | Date/time field was last modified |
modifiedBy | int | ID of the user that last modified the field |
modifiedByUser | string | Name of the user that last modified the field |
label | string | Name of the field |
alias | string | Unique alias of the field used in the form field name attributes |
description | string/null | Description of the field |
type | string | Field type |
group | string | Groupd of the fields where the field belongs |
order | int | Order number of the field |
object | string | Which object use the field. Contact (lead) or Company. |
defaultValue | string | Default value of the field. |
isRequired | boolean | True if the field is required. |
isPubliclyUpdatable | boolean | True if the field value can be changed from public requests. The tracking pixel query for example. |
isUniqueIdentifier | boolean | True if the field is unique identifier and so the contacts should merge if the value of this field is the same. |
properties | array | Field options if the field type needs some. |
List Contact Fields
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. |
HTTP Request
GET /fields/contact
or GET /fields/company
Response
Expected Response Code: 200
See JSON code example.
Field Properties
Name | Type | Description |
---|---|---|
id | int | ID of the field |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the field should be published |
publishDown | datetime/null | Date/time the field should be un published |
dateAdded | datetime | Date/time field was created |
createdBy | int | ID of the user that created the field |
createdByUser | string | Name of the user that created the field |
dateModified | datetime/null | Date/time field was last modified |
modifiedBy | int | ID of the user that last modified the field |
modifiedByUser | string | Name of the user that last modified the field |
label | string | Name of the field |
alias | string | Unique alias of the field used in the form field name attributes |
description | string/null | Description of the field |
type | string | Field type |
group | string | Groupd of the fields where the field belongs |
order | int | Order number of the field |
object | string | Which object use the field. Contact (lead) or Company. |
defaultValue | string | Default value of the field. |
isRequired | boolean | True if the field is required. |
isPubliclyUpdatable | boolean | True if the field value can be changed from public requests. The tracking pixel query for example. |
isUniqueIdentifier | boolean | True if the field is unique identifier and so the contacts should merge if the value of this field is the same. |
properties | array | Field options if the field type needs some. |
Create Field
HTTP Request
POST /fields/contact/new
or POST /fields/company/new
Post Parameters
Name | Description |
---|---|
label | string |
alias | string |
description | string/null |
type | string |
group | string |
order | int |
object | string |
defaultValue | string |
isRequired | boolean |
isPubliclyUpdatable | boolean |
isUniqueIdentifier | boolean |
properties | array |
Response
Expected Response Code: 201
Properties
Same as Get Field.
Edit Field
PUT creates a field if the given ID does not exist and clears all the field infieldation, adds the infieldation from the request. PATCH fails if the field with the given ID does not exist and updates the field field values with the values field the request.
HTTP Request
To edit a field and return a 404 if the field is not found:
PATCH /fields/contact/ID/edit
or PATCH /fields/company/ID/edit
To edit a field and create a new one if the field is not found:
PUT /fields/contact/ID/edit
or PUT /fields/company/ID/edit
Post Parameters
Name | Description |
---|---|
label | string |
alias | string |
description | string/null |
type | string |
group | string |
order | int |
object | string |
defaultValue | string |
isRequired | boolean |
isPubliclyUpdatable | boolean |
isUniqueIdentifier | boolean |
properties | array |
Response
If PUT
, the expected response code is 200
if the field was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Field.
Delete Field
Delete a field.HTTP Request
DELETE /fields/contact/ID/delete
or DELETE /fields/company/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Field.