Create a new tag of the affiliate

HTTP method

Endpoint

POST

/v1/affiliate_tags

Request body parameters

Field

Type

Description

Nullable

name

string

Name

No

Response body parameters

Field

Type

Description

id

integer

A string that uniquely identifies this tag.

name

string

Name

Example request

Request POST https://{networkname}.api.offerslook.com/v1/affiliate_tags

Request POST http://{networkname}.api.offerslook.com/v1/affiliate_tags

    {
      "name": "Music"
    }

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "affiliate_tag": {
          "id": 54,
          "name": "Music"
        }
      }
    }

Last updated