listPassOffers

❗️

Deprecated

JSON-RPC listPassOffers method is deprecated. Use GET /3.1/offers instead.

Offers are presented in descending order based on the creation date.

Parameters

Name

Type

Description

offerId*

string

Pass offer id.

criteria

object

No description

_-active _

boolean

By default you get list of active offers. To get inactive offers, set this field to false.

offset*

integer

From which offer you want to get results. Helpful in pagination.

limit*

integer

Number of results you want to retrieve. E.g. if you want to display 10 offers per page, and you are on third, just set limit to 10 and offset to 20.

The maximum number is 200.

API Request/Response

Request

{
  "method":"listPassOffers",
  "params":{
    "publisherToken":"Xlrx-SjTLVMCsaRsOf2q2hvWKOlrF57yHknDRRRMX-13Fz-x",
    "criteria":{
      "active":true
    },
    "offset":"0",
    "limit":"2"
  }, 
  "jsonrpc":"2.0",
  "id":1
}

Response

{
    "result":{
      "items":[
        {
          "id":"P580476507_US",
          "publisherEmail":"[email protected]",
          "title":"hockey and football",
          "description":"Get access to all hockey and football articles",
          "url":"http:\/\/test.com\/page_with_content",
          "currency":"USD",
          "country":"US",
          "period":"week",
          "active":true,
          "price":15,
          "createdAt":1353067309,
          "updatedAt":1353067309,
          "accessToTags":[
            "hockey",
            "football"
          ]
        },
        {
          "id":"P580476508_US",
          "publisherEmail":"[email protected]",
          "title":"basketball and tennis",
          "description":"Get access to all basketball and tennis articles",
          "url":"http:\/\/test.com\/page_with_content",
          "currency":"USD",
          "country":"US",
          "period":"week",
          "active":true,
          "price":25,
          "createdAt":1353067309,
          "updatedAt":1353067309,
          "accessToTags":[
            "basketball",
            "tennis"
          ]
        }
      ],
      "totalItemCount":3
    },
    "id":"1",
    "error":null,
    "jsonrpc":"2.0"
 }

PHP Example

<?php
    $cleengApi = new Cleeng_Api();
    $cleengApi->setPublisherToken('TeurE3xRXcFtF7gSbhYCXx_qC1IrvnDWGejDv114-OE0cdZ9');

    $offerList = $cleengApi->listPassOffers(array(), 0, 5);
    
?>