Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Status code 200

Code Block
{"deleted": 1}
 

...



Attach to a Demand or Supply Tag

...

  • domain_list_ids → this is a list of domain list ids that you want to target on the supply or demand tag
  • domain_targeting → Whether or not to treat it like a an 'White ListAllowlist' or 'Black ListBlocklist'

SDK

Code Block
In [18]: tag = springserve.demand_tags.get(2)

In [19]: tag.domain_list_ids.append(123)

In [20]: tag.domain_targeting = "White ListAllowlist"

In [21]: print tag.save().ok

True

...

See documentation on the Supply and Demand Tag APIs

...