Dynamic Content
Use this endpoint to obtain details on Adaptix's web dynamic content.
Get Dynamic Content
HTTP Request
GET /dynamiccontents/ID
Response
Expected Response Code: 200
See JSON code example.
Dynamic Content Properties
Name | Type | Description |
---|---|---|
id | int | ID of the dynamic content |
name | string | Name of the dynamic content |
description | string/null | Description of the dynamic content |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the dynamic content should be published |
publishDown | datetime/null | Date/time the dynamic content should be un published |
dateAdded | datetime | Date/time dynamic content was created |
createdBy | int | ID of the user that created the dynamic content |
createdByUser | string | Name of the user that created the dynamic content |
dateModified | datetime/null | Date/time dynamic content was last modified |
modifiedBy | int | ID of the user that last modified the dynamic content |
modifiedByUser | string | Name of the user that last modified the dynamic content |
variantChildren | array | Array of Dynamic Content entities for variants of this landing dynamic content |
variantParent | object | The parent/main dynamic content if this is a variant (A/B test) |
sentCount | int | Count of how many times the dynamic content was sent |
List Dynamic Contents
HTTP Request
GET /dynamiccontents
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 Dynamic Content.
Create Dynamic Content
HTTP Request
POST /dynamiccontents/new
Post Parameters
Name | Type | Description |
---|---|---|
id | int | ID of the dynamic content |
name | string | Name of the dynamic content |
description | string/null | Description of the dynamic content |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the dynamic content should be published |
publishDown | datetime/null | Date/time the dynamic content should be un published |
dateAdded | datetime | Date/time dynamic content was created |
createdBy | int | ID of the user that created the dynamic content |
createdByUser | string | Name of the user that created the dynamic content |
dateModified | datetime/null | Date/time dynamic content was last modified |
modifiedBy | int | ID of the user that last modified the dynamic content |
modifiedByUser | string | Name of the user that last modified the dynamic content |
variantChildren | array | Array of Dynamic Content entities for variants of this landing dynamic content |
variantParent | object | The parent/main dynamic content if this is a variant (A/B test) |
sentCount | int | Count of how many times the dynamic content was sent |
Response
Expected Response Code: 201
Properties
Same as Get Dynamic Content.
Edit Dynamic Content
PUT creates a dynamicContent if the given ID does not exist and clears all the dynamic content information, adds the information from the request. PATCH fails if the dynamic content with the given ID does not exist and updates the dynamic content field values with the values form the request.
HTTP Request
To edit a dynamicContent and return a 404 if the dynamic content is not found:
PATCH /dynamiccontents/ID/edit
To edit a dynamicContent and create a new one if the dynamic content is not found:
PUT /dynamiccontents/ID/edit
Post Parameters
Name | Type | Description |
---|---|---|
id | int | ID of the dynamic content |
name | string | Name of the dynamic content |
description | string/null | Description of the dynamic content |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the dynamic content should be published |
publishDown | datetime/null | Date/time the dynamic content should be un published |
dateAdded | datetime | Date/time dynamic content was created |
createdBy | int | ID of the user that created the dynamic content |
createdByUser | string | Name of the user that created the dynamic content |
dateModified | datetime/null | Date/time dynamic content was last modified |
modifiedBy | int | ID of the user that last modified the dynamic content |
modifiedByUser | string | Name of the user that last modified the dynamic content |
variantChildren | array | Array of Dynamic Content entities for variants of this landing dynamic content |
variantParent | object | The parent/main dynamic content if this is a variant (A/B test) |
sentCount | int | Count of how many times the dynamic content was sent |
Response
If PUT
, the expected response code is 200
if the dynamic content was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Dynamic Content.
Delete Dynamic Content
Delete a dynamicContent.HTTP Request
DELETE /dynamiccontents/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Dynamic Content.