GET api/partner/skus/{currency}

Gets the available fee products for a given currency under an affiliate

Request Information

Authentication Method

Sub Partner Authentication

URI Parameters

NameDescriptionTypeAdditional information
currency

Currency

Required

Body Parameters

None.

Response Information

Successful Response:

Resource Description

Collection of SubscriptionOptions
NameDescriptionTypeAdditional information
type

string

 

options

Collection of SubscriptionBand

 

Response Formats

application/json, text/json

Sample:
[
  {
    "type": "SearchCampaignFee",
    "options": [
      {
        "name": "SEM Starter",
        "feeCurrency": "USD",
        "fee": 20.0,
        "budgetCurrency": "EUR",
        "budgetMin": 50.0,
        "budgetMax": 99.0,
        "level": null
      },
      {
        "name": "SEM Pro",
        "feeCurrency": "USD",
        "fee": 20.0,
        "budgetCurrency": "EUR",
        "budgetMin": 100.0,
        "budgetMax": 149.0,
        "level": null
      }
    ]
  }
]

application/xml, text/xml

Sample:
<ArrayOfSubscriptionOptions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SiteWit.PartnerAPI.Models.ReturnModels">
  <SubscriptionOptions>
    <options>
      <SubscriptionBand>
        <budgetCurrency>EUR</budgetCurrency>
        <budgetMax>99</budgetMax>
        <budgetMin>50</budgetMin>
        <fee>20</fee>
        <feeCurrency>USD</feeCurrency>
        <level i:nil="true" />
        <name>SEM Starter</name>
      </SubscriptionBand>
      <SubscriptionBand>
        <budgetCurrency>EUR</budgetCurrency>
        <budgetMax>149</budgetMax>
        <budgetMin>100</budgetMin>
        <fee>20</fee>
        <feeCurrency>USD</feeCurrency>
        <level i:nil="true" />
        <name>SEM Pro</name>
      </SubscriptionBand>
    </options>
    <type>SearchCampaignFee</type>
  </SubscriptionOptions>
</ArrayOfSubscriptionOptions>