Get a category of the network

HTTP method

Endpoint

GET

/v1/offers_categories/{category_id}

Path parameters

Parameter

Description

category_id

The unique id for the category.

Response body parameters

Field

Type

Description

id

integer

A string that uniquely identifies this category.

name

string

Types

create_time

string

Create time for classification.

Example request

Request GET https://{networkname}.api.offerslook.com/v1/offer_categories/75

Request GET http://{networkname}.api.offerslook.com/v1/offer_categories/75

Example response

{
      "code": 0,
      "message": "Success",
      "data": {
        "offer_category": {
          "id": 75,
          "name": "offerslook",
          "create_time": 1461913271
        }
      }
    }

Last updated