GET v1/Sample/CustomFieldValues/Article/min/{minFieldValueLength}/max/{maxFieldValueLength}
Get sample data for Article Custom Field Values where the length of the internal representation of the custom field values is in the specified range
Roles Allowed
admin, editor
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
minFieldValueLength |
The minimum length for the internal representation of the custom field values |
integer |
Required |
maxFieldValueLength |
The maximum length for the internal representation of the custom field values |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Article Keys and the length of the internal representation for the associated custom field values
Collection of SampleArticleCustomFieldValueName | Description | Type | Additional information |
---|---|---|---|
ArticleKey | integer |
None. |
|
CharacterCount |
The length of the internal representation for the custom field data. A larger number implies that the data might be more interesting than a smaller number. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ArticleKey": 1, "CharacterCount": 1 }, { "ArticleKey": 1, "CharacterCount": 1 } ]
application/xml, text/xml
Sample:
<ArrayOfSampleArticleCustomFieldValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Models.V3.ApiDto"> <SampleArticleCustomFieldValue> <ArticleKey>1</ArticleKey> <CharacterCount>1</CharacterCount> </SampleArticleCustomFieldValue> <SampleArticleCustomFieldValue> <ArticleKey>1</ArticleKey> <CharacterCount>1</CharacterCount> </SampleArticleCustomFieldValue> </ArrayOfSampleArticleCustomFieldValue>