Get an offer pool

HTTP method

Endpoint

GET

/v1/offer_pools/{pool_id}

Path parameters

Parameter

Description

pool_id

The unique id for the offer pool.

Response body parameters

Field

Type

Description

id

integer

The unique id for the offer pool.

name

string

Offer pool name.

status

string

The offer pool status.

note

string

The offer pool note.

create_time

integer

Create time.

update_time

integer

Update time.

Example request

Request GET https://{networkname}.api.offerslook.com/v1/offer_pools/8

Request GET http://{networkname}.api.offerslook.com/v1/offer_pools/8

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "offer_pool": {
          "id": 8,
          "name": "Test Demo",
          "status": "active",
          "note": "Update this offer pool !",
          "create_time": 1468461517,
          "update_time": 1468461607
        }
      }
    }

Last updated