Get Profile Details

Offer Wall API Parameters

API parameters pubID, adwallID, and api_key can be found via the "API Details" link next to your profile at Your Offer Wall Profiles.

If you would like us to notify you whenever an offer is completed (lead generated), set up a server postback.

Get Profile Details

An Offer Wall profile contains the settings for a particular Offer Wall that you have set up in our dashboard, click here to set one up or view your existing Offer Wall profiles. Use this call to retrieve the settings for one of your profiles.

To find your publisher ID or the Offer Wall ID for a profile, go to the profiles page and click the “API & SDK Details” link across from the profile name.

Response 404 when adwallID doesn't exist for the pubID specified.

GET:

http://adscendmedia.com/adwall/api/v1.1/publisher/{pubId}/profile/{adwallId}/details.json?deviceType=0

Parameters   Description Type
pubId Required Your publisher ID Number
adwallId Required Your Offer Wall profile ID Number
deviceType Optional deviceType is a flag used to return the customization for specified device.(Default will be 0 = Web)
deviceType = 0 for Web Customization,
deviceType = 1 for Android Customization And
deviceType = 2 for iOS Customization.
Number

Response 200

Content-Type: application/json

{
  "profile": {
    "publisher_id": 255,
    "profile_id": 0,
    "settings": {
      "name": "Our Awesome Offer Wall",
      "header": "Complete a great deal below and earn coins!",
      "payout_min": null,
      "size": {
        "width": 300,
        "height": 400
      },
      "currency": {
        "name": "Coins",
        "ratio": 500,
        "round": true,
        "visible": true
      },
      

      "customization":{

       // when deviceType = 0 (For Web Customization) the response will be : 

        "header_background_color":"157e65", // used for header background color
        "header_text_color":"ffffff", // used for header text color
        "header_button_background_static":"0f9fd1", // used for header button background
        "header_button_background_hover":"0f9fd1", // used for header button background on hover
        "header_button_text_static":"ffffff", // used for header button text
        "header_button_text_hover":"ffffff", // used for header button text on hover
        "support_button_background_static":"154d7e", // used for support button background
        "support_button_background_hover":"03374f", // used for support button background on hover
        "support_button_text_static":"ffffff", // used for support button text
        "support_button_text_hover":"ffffff", // used for support button text on hover
        "offer_cards_credit_button_background_static":"1ba324", // used for offer cards credit button background
        "offer_cards_credit_button_background_hover":"269109", // used for offer cards credit button background on hover
        "offer_cards_credit_button_text_static":"ffffff", // used for offer cards credit button text
        "offer_cards_credit_button_text_hover":"ffffff", // used for offer cards credit button text on hover
        "offer_cards_offer_name_text":"3e3e3e", // used for offer cards offer name text
        "offerwall_background_color":"d8d8d8", // used for offerwall background color
        "offerwall_background_image":"", // useed for offerwall background image
        "offerwall_background_position":"centered", // used for offerwall background position (centered, tiled or cover)
        "misc_currency_counter":"154d7e", // used for miscellaneous currency counter
        "misc_no_offers_available_background":"cfcfcf", // used for miscellaneous no offers available background
        "misc_no_offers_available_text":"000000", // used for miscellaneous no offers available text
        "offer_cards_special_offer_header_background":"154d7e", // used for offer cards special offers header background
        "offer_cards_special_offer_header_text":"d23535", // used for offer cards special offers header text
        "misc_loading_animation":"154d7e", // used for miscellaneous loading animation
        "suport_header_text_color":"ffffff", // used for support header text color
        "suport_header_background":"154d7e", // used fo support header background
        "misc_load_more_button_text":"ffffff", // used for miscellaneous load more button text
        "support_navigation_static":"9b9b9b", // used for support navigation
        "support_navigation_hover_active":"154d7e" // used for support navigation on hover when active


         // when deviceType = 1 or 2 (For Android or iOS Customization), the response will be : 

        "header_background_color":"#22cbf7", // used for header background color
        "header_text_color":"#cf8c18", // used for header text color
        "header_menu_icon_color_static":"#ef6c83", // used for header menu icon color
        "header_menu_icon_color_on_press":"#0f7ed1", // used for header menu icon color on press
        "support_tab_text_or_border_color_static":"#b28a7c", // used for support tab text or border color
        "support_tab_background_static":"#e9de5a", // used for support tab background
        "support_tab_background_on_press":"#273ad1", // used for support tab background on press
        "offer_cards_credit_button_background_static":"#a3e24c", // used for offer cards credit button background
        "offer_cards_credit_button_background_hover":"#48c3a9", // used for offer cards credit button background on press
        "offer_cards_offer_name_text":"#17ffb6", // used for offer cards offer name text
        "offer_cards_credit_button_text_static":"#9f3838", // used for offer cards credit button text
        "offer_cards_credit_button_text_hover":"#a1b6eb", // used for offer cards credit button text on press
        "offer_cards_special_offer_header_background":"#0fd816", // used for offer cards special offer header background
        "offer_cards_special_offer_header_text":"#ffffff", // used for offer cards special offer header text
        "offerwall_background_color":"#daec71", // used for offerwall background color
        "offerwall_background_image":"http:\/\/media.idownloadblog.com\/wp-content\/uploads\/2016\/06\/Matt-Bonney-Retro-apple-logo-for-WWDC-2016.png", // used for offerwall background image
        "offerwall_background_position":"centered", // used for offerwall background position (centered, tiled or cover)
        "general_button_save_static":"#ecc108", // used for general button save
        "general_button_save_on_press":"#09eac3", // used for general button save on press
        "general_button_support_email_send_static":"#c4a178", // used for general button support email send
        "general_button_support_email_send_on_press":"#086a51", // used for general button support email send on press
        "deviceType":2 // used to identify the customization request for the device
      },
    }
  }
}

Continue to Offers >