Partially update a creative association

Partially update a creative association between a Creative and a Line Item. Only specified fields in the request body will be updated.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
integer
required

A unique integer value identifying this creative line item assignment.

integer
required
Body Params

A mixin that should be inherited by a custom serializer to include the logic for validating warnings.

This mixin works by recursively descending into nested levels of the root serializer,
collecting warnings in a dictionary structure, and raising them at a higher level.

To implement warnings in a custom serializer, two types of methods must be used.
The first type is used to handle field errors: warn_<field name>().
The second type is used for non-field warnings: warn().

Usage:
class NestedSerializer(WarningsSerializerMixin, serializers.Serializer):
baz = serializers.IntegerField()

    def warn_baz(self, value):
        ...

    def warn(self, attrs):
        ....

class RootSerializer(WarningsSerializerMixin, serializers.Serializer):
    foo = NestedSerializer()
    bar = serializers.CharField()

    def warn_bar(self, value):
        ...

    def warn(self, attrs):
        ...

boolean
Defaults to true
integer | null
1 to 100

The weighting of the creative in the line item.

date-time | null

Date/time when this association is available

date-time | null

Date/time when this association become unavailable

integer
integer
Headers
string
enum
Defaults to application/json

Generated from available request content types

Allowed:
Responses

400

Invalid request data.

401

Authentication required.

403

Permission denied.

500

Internal server error.

Language
Credentials
:
URL
LoadingLoading…
Response
Choose an example:
application/json