From Openprovider API documentation
Module Reseller > Search Promotions
Module
| reseller
|
Command name
| searchPromotionBillingRequest
|
Use
| Retrieves all running and future promotions
|
Input
|
|
Output
|
- promotionId
- tld
- currency
- memberPrice
- promoPrice
- operation
- period
- periodUnit
- startDate
- endDate
- applicableForMembers
|
Examples
Using PHP class
$request = new OP_Request;
$request->setCommand('searchPromotionBillingRequest')
->setAuth(array('username' => 'username', 'password' => 'password'))
->setArgs(array(
));
Raw XML
Please note that newlines and leading spaces are added only for readability. Those whitespaces should be excluded from your XML command before sending it to Openprovider.
<?xml version="1.0" encoding="UTF-8"?>
<openXML>
<credentials>
<username>username</username>
<password>password</password>
</credentials>
<searchPromotionBillingRequest>
</searchPromotionBillingRequest>
</openXML>
<?xml version="1.0" encoding="UTF-8"?>
<openXML>
<reply>
<code>0</code>
<desc />
<data>
<results>
<array>
<item>
<promotionId>1293</promotionId>
<tld>rent</tld>
<currency>USD</currency>
<memberPrice>45.18</memberPrice>
<promoPrice>15.18</promoPrice>
<operation>create</operation>
<period>1</period>
<periodUnit>year</periodUnit>
<startDate>2019-10-04</startDate>
<endDate>2020-12-31</endDate>
<applicableForMembers>supreme</applicableForMembers>
</item>
<item>
<promotionId>1494</promotionId>
<tld>agency</tld>
<currency>USD</currency>
<memberPrice>14.18</memberPrice>
<promoPrice>2.68</promoPrice>
<operation>create</operation>
<period>1</period>
<periodUnit>year</periodUnit>
<startDate>2020-05-01</startDate>
<endDate>2020-12-31</endDate>
<applicableForMembers>supreme</applicableForMembers>
</item>
</array>
</results>
</data>
</reply>
</openXML>