Skip to main content

Prisjakt Promotion XML

Description

Most fields in use in our feed are also part of the Google Promotions Feed Specification, and as such these fields will be usable for other systems that support Google Product feeds.

info

The promotion feed is designed primarily for system integrations, enabling automated processes to handle promotions efficiently. For tasks that require manual intervention, we recommend using the BC UI, which is specifically invented for human interaction and it's easy of use. Mixing the promotion feed with manual processes in the BC UI can lead to confusion and misconfiguration, so it's best to keep their usage separate to maintain clarity and streamline operations.

Prisjakt Specific Feeds

In order to be able to provide you with extra functionality we sometimes add extra fields that can be used for an even better experience at Prisjakt for your customers.

Currently, our Prisjakt specific fields are:

The fields are also defined in our promotions feeds xml namespace

Promotion Required Fields

There are some fields, we simply cannot be without when ingestion your promotion. If any of these fields are missing, your whole promotion will be omitted.

The following fields are required for us to correctly index your promotion and assign it to offers.

Promotion Optional Fields

Example Files

Minimal

Download XML File

<?xml version='1.0' encoding='UTF-8'?>
<rss xmlns:pj="https://schema.prisjakt.nu/ns/promotions-1.0" xmlns:g="http://base.google.com/ns/1.0" version="3.0">
<channel>
<title>Prisjakt Minimal Promotions Feed</title>
<description>This is an promotions feed with the minimal values required</description>
<link>https://schema.prisjakt.nu</link>
<item>
<g:promotion_id><![CDATA[tbby123_us]]></g:promotion_id>
<g:coupon_value_type>buy_m_get_percent_off</g:coupon_value_type>
<g:long_title><![CDATA[Free mug with purchase]]></g:long_title>
<g:promotion_effective_dates>2023-12-20T00:00:00+00:00/2023-12-24T00:00:00+00:00</g:promotion_effective_dates>
</item>
</channel>
</rss>

Full

Download XML File

<?xml version='1.0' encoding='UTF-8'?>
<rss xmlns:pj="https://schema.prisjakt.nu/ns/promotions-1.0" xmlns:g="http://base.google.com/ns/1.0" version="3.0">
<channel>
<title>Prisjakt Example Promotions Feed</title>
<description>This is an example promotions feed all possible values</description>
<link>https://schema.prisjakt.nu</link>
<item>
<g:promotion_id><![CDATA[tbby123_us]]></g:promotion_id>
<g:coupon_value_type>percent_off</g:coupon_value_type>
<g:description><![CDATA[Free tote bag with 100.00 USD purchase.]]></g:description>
<g:image_link>https://mysite.com/promotion-campaign-2023/banner.jpg</g:image_link>
<g:item_id>shop_offer_id_1</g:item_id>
<g:item_id>shop_offer_id_2</g:item_id>
<g:item_id>shop_offer_id_3</g:item_id>
<g:item_id>shop_offer_id_4</g:item_id>
<g:long_title><![CDATA[Free mug with purchase]]></g:long_title>
<g:promotion_effective_dates>2023-12-20T00:00:00+00:00/2023-12-24T00:00:00+00:00</g:promotion_effective_dates>
<pj:promotion_page_link>https://mysite.com/promotion-campaign-2023</pj:promotion_page_link>
</item>
</channel>
</rss>