Method: firstAndThirdPartyAudiences.editCustomerMatchMembers
Stay organized with collections
Save and categorize content based on your preferences.
Updates the member list of a Customer Match audience.
Only supported for the following audienceType
:
CUSTOMER_MATCH_CONTACT_INFO
CUSTOMER_MATCH_DEVICE_ID
HTTP request
POST https://displayvideo.googleapis.com/v1beta2/firstAndThirdPartyAudiences/{firstAndThirdPartyAudienceId}:editCustomerMatchMembers
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters |
firstAndThirdPartyAudienceId |
string (int64 format)
Required. The ID of the Customer Match FirstAndThirdPartyAudience whose members will be edited.
|
Request body
The request body contains data with the following structure:
JSON representation |
{
"advertiserId": string,
// Union field added_members can be only one of the following:
"addedContactInfoList": {
object (ContactInfoList )
},
"addedMobileDeviceIdList": {
object (MobileDeviceIdList )
}
// End of list of possible types for union field added_members .
} |
Fields |
advertiserId |
string (int64 format)
Required. The ID of the owner advertiser of the updated Customer Match FirstAndThirdPartyAudience.
|
Union field added_members . The members to be added to the Customer Match audience. added_members can be only one of the following: |
addedContactInfoList |
object (ContactInfoList )
Input only. A list of contact information to define the members to be added.
|
addedMobileDeviceIdList |
object (MobileDeviceIdList )
Input only. A list of mobile device IDs to define the members to be added.
|
Response body
If successful, the response body contains data with the following structure:
The response of FirstAndThirdPartyAudienceService.EditCustomerMatchMembers.
JSON representation |
{
"firstAndThirdPartyAudienceId": string
} |
Fields |
firstAndThirdPartyAudienceId |
string (int64 format)
Required. The ID of the updated Customer Match FirstAndThirdPartyAudience.
|
Authorization Scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/display-video
For more information, see the OAuth 2.0 Overview.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["Edits the member list of a Customer Match audience, supporting only `CUSTOMER_MATCH_CONTACT_INFO` and `CUSTOMER_MATCH_DEVICE_ID` audience types."],["Requires specifying the `firstAndThirdPartyAudienceId` in the path and providing `advertiserId` along with either `addedContactInfoList` or `addedMobileDeviceIdList` in the request body."],["Sends a `POST` request to `https://displayvideo.googleapis.com/v1beta2/firstAndThirdPartyAudiences/{firstAndThirdPartyAudienceId}:editCustomerMatchMembers` using gRPC Transcoding syntax."],["Upon success, returns the `firstAndThirdPartyAudienceId` of the updated Customer Match audience."],["Needs authorization with the `https://www.googleapis.com/auth/display-video` scope."]]],["This API updates a Customer Match audience's member list via a `POST` request to a specified URL. The `firstAndThirdPartyAudienceId` is a required path parameter. The request body must include the `advertiserId` and specify members to add, either as `addedContactInfoList` or `addedMobileDeviceIdList`. The response includes the `firstAndThirdPartyAudienceId` of the updated audience. This operation is restricted to `CUSTOMER_MATCH_CONTACT_INFO` and `CUSTOMER_MATCH_DEVICE_ID` audience types and requires `https://www.googleapis.com/auth/display-video` scope.\n"]]