Search the Omeda Knowledge Base

< All Topics
Print

Brand Promotions Content By Promo Code

Summary

This API provides capabilities to retrieve information about a Brands Single Promotion Content by Promo Code .

General Technical Requirements

The following technical requirements apply to all requests for this API.

Base Resource URI

Production: https://ows.omeda.com/webservices/rest/brand/{brandAbbreviation}/promotioncontent/promocode/{promotionCode}/* 

Testing:    https://ows.omedastaging.com/webservices/rest/brand/{brandAbbreviation}/promotioncontent/promocode/{promotionCode}/* 

brandAbbreviation is the abbreviation for the brand promocode is the promotion code

HTTP Headers

The HTTP header must contain the following element: x-omeda-appid a unique id provided to you by Omeda to access your data. The request will fail without a valid id.

Content Type

The content type is application/xml. XML application/xml

Supported HTTP Methods

There is one HTTP method supported:

  1. GET : See W3C’s GET specs for details.

Lookup All Promotion Content

Retrieves all defined Promotion Content for the brand.

Field Definition

The following table describes the data elements present on the response from the API. In addition to the below elements, a SubmissionId element will also be returned with all responses. This is a unique identifier for the web services response. It can be used to cross-reference the response in Omeda’s database.

Brand Elements

Element NameAlways Returned…Data TypeDescription
IdYesIntegerThe brand identifier.
DescriptionYesStringThe name of the brand.
BrandAbbrevYesStringThe abbreviation for the brand (used in most web service URLs).
PromotionContentYesListList of PromotionContent Elements attached to this Brand.

PromotionContent Elements

Element NameAlways Returned…Data TypeDescription
IdYesintThe promotion content identifier.
ContentKeyYesStringName of the promotion content.
PromoCodeYesStringThe Promotion that this content is associated with.
StatusCodeYesintThe status of the promotion content.
HtmlContentYesStringThe HTML content associated with this content Key.
LayoutYesStringThe layout of the content on the page. (Top, Bottom, Left, Right)

Response

HTTP Response Codes

StatusDescription
200 OKThe request has succeeded. See Example Response below.
404 Not FoundIn the event no Promotions are found, an HTTP 404 (not found) response will be returned.

Example Response

<?xml version="1.0" encoding="UTF-8"?>
<Brand>
   <SubmissionId>f202c56d-328c-408b-80a1-44806287242d</SubmissionId>
   <Id>12345</Id>
   <Description>XYZ Brand</Description>
   <BrandAbbrev>XYZ</BrandAbbrev>
   <PromotionContents>
      <PromotionContent>
         <Id>1</Id>
         <ContentKey>FREEREG</ContentKey>
         <PromoCode>REG</PromoCode>
         <StatusCode>2</StatusCode>
         <HtmlContent>
            <td> this is the content</td>
         </HtmlContent>
         <ContentLayout>top</ContentLayout>
      </PromotionContent>
      <PromotionContent>
         <Id>2</Id>
         <ContentKey>REGFREE</ContentKey>
         <PromoCode>REG</PromoCode>
         <StatusCode>1</StatusCode>
         <HtmlContent>
            <td> this is the other content</td>
         </HtmlContent>
         <ContentLayout>top</ContentLayout>
      </PromotionContent>
   </PromotionContents>
</Brand>
Tags:
Table of Contents
Scroll to Top