POST api/Systems/PostGetDynamicContent/{securityCode}/{storeCode}
Returns an UpDynamicContents JSON array with all dynamic content records related to the UpSystem that matches the supplied Guid, configuration and other parameters (mandatory body field[s]: Guid (or alternativeliy Name can be supplied), Configuration, DataSheetName, Type, Delimiter, Variables - optional body field[s]: StateApproved, StatePublished and StateReferenceDate can be supplied to influence the default handling of non published/approved or expired entities, Language can be supplied to limit ETIM based property values to the specified language)
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| securityCode |
Used for authorization |
globally unique identifier |
Required |
| storeCode |
Used to specify target database |
string |
Required |
Body Parameters
Mandatory body field(s): Guid, Configuration, DataSheetName, Type, Delimiter, Variables
ApiRequestObject| Name | Description | Type | Additional information |
|---|---|---|---|
| Guid | globally unique identifier |
None. |
|
| Language | string |
None. |
|
| IgnoreCache | boolean |
None. |
|
| Clean | boolean |
None. |
|
| Range | integer |
None. |
|
| Filter | string |
None. |
|
| DataContractName | string |
None. |
|
| Name | string |
None. |
|
| DataSheetName | string |
None. |
|
| TemplateName | string |
None. |
|
| TemplateGroupName | string |
None. |
|
| Variables | string |
None. |
|
| SubDirectories | string |
None. |
|
| Channel | string |
None. |
|
| View | string |
None. |
|
| Search | string |
None. |
|
| Configuration | string |
None. |
|
| Type | string |
None. |
|
| Delimiter | string |
None. |
|
| City | string |
None. |
|
| Country | string |
None. |
|
| Latitude | string |
None. |
|
| Longitude | string |
None. |
|
| PropertyTypes | string |
None. |
|
| EntityTypes | string |
None. |
|
| StateApproved | ExpressionFilterState |
None. |
|
| StatePublished | ExpressionFilterState |
None. |
|
| StateReferenceDate | ExpressionFilterState |
None. |
Request Formats
application/json, text/json
{
"Guid": "583beb39-bb59-464f-ae79-bf9611f5b335",
"Language": "sample string 2",
"IgnoreCache": true,
"Clean": true,
"Range": 5,
"Filter": "sample string 6",
"DataContractName": "sample string 7",
"Name": "sample string 8",
"DataSheetName": "sample string 9",
"TemplateName": "sample string 10",
"TemplateGroupName": "sample string 11",
"Variables": "sample string 12",
"SubDirectories": "sample string 13",
"Channel": "sample string 14",
"View": "sample string 15",
"Search": "sample string 16",
"Configuration": "sample string 17",
"Type": "sample string 18",
"Delimiter": "sample string 19",
"City": "sample string 20",
"Country": "sample string 21",
"Latitude": "sample string 22",
"Longitude": "sample string 23",
"PropertyTypes": "sample string 24",
"EntityTypes": "sample string 25",
"StateApproved": 0,
"StatePublished": 0,
"StateReferenceDate": 0
}
application/xml, text/xml
<ApiRequestObject xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Up.Engine.Service.WebAPI.Models"> <Channel>sample string 14</Channel> <City>sample string 20</City> <Clean>true</Clean> <Configuration>sample string 17</Configuration> <Country>sample string 21</Country> <DataContractName>sample string 7</DataContractName> <DataSheetName>sample string 9</DataSheetName> <Delimiter>sample string 19</Delimiter> <EntityTypes>sample string 25</EntityTypes> <Filter>sample string 6</Filter> <Guid>583beb39-bb59-464f-ae79-bf9611f5b335</Guid> <IgnoreCache>true</IgnoreCache> <Language>sample string 2</Language> <Latitude>sample string 22</Latitude> <Longitude>sample string 23</Longitude> <Name>sample string 8</Name> <PropertyTypes>sample string 24</PropertyTypes> <Range>5</Range> <Search>sample string 16</Search> <StateApproved>True</StateApproved> <StatePublished>True</StatePublished> <StateReferenceDate>True</StateReferenceDate> <SubDirectories>sample string 13</SubDirectories> <TemplateGroupName>sample string 11</TemplateGroupName> <TemplateName>sample string 10</TemplateName> <Type>sample string 18</Type> <Variables>sample string 12</Variables> <View>sample string 15</View> </ApiRequestObject>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
UpDynamicContent[]
Collection of UpDynamicContent| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | string |
None. |
|
| Formatting | string |
None. |
|
| Value | string |
None. |
|
| ModifyDate | date |
None. |
|
| Sort | integer |
None. |
Response Formats
application/json, text/json
[
{
"Type": "sample string 1",
"Formatting": "sample string 2",
"Value": "sample string 3",
"ModifyDate": "2026-01-13T05:17:12.0937835+01:00",
"Sort": 5
},
{
"Type": "sample string 1",
"Formatting": "sample string 2",
"Value": "sample string 3",
"ModifyDate": "2026-01-13T05:17:12.0937835+01:00",
"Sort": 5
}
]
application/xml, text/xml
<ArrayOfUpDynamicContent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Up.Engine.Service.Data.Model">
<UpDynamicContent>
<Formatting>sample string 2</Formatting>
<ModifyDate>2026-01-13T05:17:12.0937835+01:00</ModifyDate>
<Sort>5</Sort>
<Type>sample string 1</Type>
<Value>sample string 3</Value>
</UpDynamicContent>
<UpDynamicContent>
<Formatting>sample string 2</Formatting>
<ModifyDate>2026-01-13T05:17:12.0937835+01:00</ModifyDate>
<Sort>5</Sort>
<Type>sample string 1</Type>
<Value>sample string 3</Value>
</UpDynamicContent>
</ArrayOfUpDynamicContent>