Skip to content

Commit 7251c4f

Browse files
authored
Merge pull request #36 from justwatch/feat/add-rule-field
return custom audience rule
2 parents 8a4ca60 + 92d5f8c commit 7251c4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

marketing/v16/audience.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ func (as *AudienceService) ListCustom(ctx context.Context, act string) ([]Custom
238238
res := []CustomAudience{}
239239
route := fb.NewRoute(Version, "/act_%s/customaudiences", act).
240240
Limit(250).
241-
Fields("id", "name", "description", "approximate_count_upper_bound", "approximate_count_lower_bound", "subtype", "adaccounts", "lookalike_spec") // , "rule")
241+
Fields("id", "name", "description", "approximate_count_upper_bound", "approximate_count_lower_bound", "subtype", "adaccounts", "lookalike_spec", "rule")
242242
err := as.c.GetList(ctx, route.String(), &res)
243243
if err != nil {
244244
return nil, err

0 commit comments

Comments
 (0)