GET v1/Sample/CustomFieldValues/Media/min/{minFieldValueLength}/max/{maxFieldValueLength}
Get sample data for Media 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
Media Keys and the length of the internal representation for the associated custom field values
Collection of SampleMediaCustomFieldValue| Name | Description | Type | Additional information | 
|---|---|---|---|
| MediaKey | 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:
        
[
  {
    "MediaKey": 1,
    "CharacterCount": 1
  },
  {
    "MediaKey": 1,
    "CharacterCount": 1
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfSampleMediaCustomFieldValue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Models.V3.ApiDto">
  <SampleMediaCustomFieldValue>
    <CharacterCount>1</CharacterCount>
    <MediaKey>1</MediaKey>
  </SampleMediaCustomFieldValue>
  <SampleMediaCustomFieldValue>
    <CharacterCount>1</CharacterCount>
    <MediaKey>1</MediaKey>
  </SampleMediaCustomFieldValue>
</ArrayOfSampleMediaCustomFieldValue>