AddAudienceSegmentUsers
Add specific users to an audience segment.
Execute
You can add users to a specific audience segment by specifying a list of identifiers:
EXECUTE AddAudienceSegmentUsers AudienceSegmentId = '5603670370513719', IdentifierType = 'PHONE', Identifiers = '001-234-567-8910,+44 844 412 4653'
You can add users to a specific audience segment by specifying a CSV file with a list of identifiers:
EXECUTE AddAudienceSegmentUsers AudienceSegmentId = '5603670370513719', IdentifierType = 'PHONE', CSVFilePath = 'C:\\identifiers.csv'
Input
Name | Type | Required | Description |
AudienceSegmentId | String | True | The Id of the audience segment. |
IdentifierType | String | True | The identifier type.
使用できる値は次のとおりです。EMAIL, MOBILE_ADVERTISER_ID, PHONE |
Identifiers | String | False | Comma-separated list of email, phone number or mobile identifiers. |
CSVFilePath | String | False | The path of the csv file. |
Result Set Columns
Name | Type | Description |
Success | Bool | Whether the request was successful or not. |
NumberOfUploadedUsers | Int | The number of the uploaded users. |