Last Update: 2024-03-21

Content - Get list

Request:

<?xml version="1.0" encoding="utf-8"?>
<getcontentlist>
    <catid>12345</catid>
    <fields>
        <field>title</field>
        <field>opener</field>
        <field>detailurl</field>
        <field>media</field>
        ...
    </fields>
    <page></page>
    <pagesize></pagesize>    
</getcontentlist>
Description of XML-Tags:
Element Format Description
getcontentlistRoot
↳ catidintOptional; ID of folder
↳ fieldsList of desired fields to return
   ↳ field Possible fields: externalid, catid, language, title, titleinternal, opener, detail, media, detailname, detailurl, custom1, custom2, custom3, custom4, custom5, custom6, custom7, custom8, custom9, custom10, topics, created
Default: title, opener, media, detailurl

Response:

<?xml version="1.0"?>
<response>
    <code>2000</code>
    <description>
        <![CDATA[OK]]>
    </description>
    <data>
        <content id="12345">
            <catid>12345</catid>
            <language>de</language>
            <title><![CDATA[Content Title]]></title>
            <opener><![CDATA[...]]></opener>
            <detailname><![CDATA[...]]></detailname>
            <detailurl><![CDATA[https://...]]></detailurl>
            <media id="12345">
                <url>https://...</url>
                <size>12345</size>
                <type>jpg</type>
                <name>...</name>
                <width>640</width>
                <height>480</height>
                <copyright>...</copyright>
            </media>
            <detail/>
            <custom1></custom1>
            ...
            <custom10></custom10>
            <topics>1,2,3</topics>
            <created>2021-01-01 12:00:00</created>
        </content>
        ...
    </data>
    <pagination>
        <page>1</page>
        <pagesize>100</pagesize>
        <prev/>
        <next/>
        <last>1</last>
        <numrecords>1</numrecords>
    </pagination>
</response>
Für Rückfragen stehen wir Ihnen jederzeit gerne unter support@eyepin.com zur Verfügung.