Delete a tag of an affiliate

HTTP method

Endpoint

DELETE

/v1/affiliates/{affiliate_id}/affiliate_tags/{tag_id}

Path parameters

Parameter

Description

affiliate_id

The unique id for the affiliate.

tag_id

The unique id for the tag.

Response body parameters

Field

Type

Description

id

integer

A string that uniquely identifies this tag.

affiliate_id

integer

A string that uniquely identifies this affiliate.

name

string

Name

Example request

Request DELETE https://{networkname}.api.offerslook.com/v1/affiliates/4909/affiliate_tags/41

Request DELETE http://{networkname}.api.offerslook.com/v1/affiliates/4909/affiliate_tags/41

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "affiliate_tag": [
          {
            "id": 17,
            "name": "Other",
            "affiliate_id": 4909
          }
        ]
      }
    }

Last updated