Append to Audience
PUT/audiences/:id/append
Appending members in existing audience from csv file
Appends email addresses to an existing Audience list by importing customer email addresses from a CSV file. Use this endpoint to efficiently add multiple recipients to an existing Audience in a single operation, making it easy to grow and manage your audience without creating a new list.
Request
Path Parameters
id uuidrequired
ID of the Audience to append members
- multipart/form-data
Body
required
contactFile binaryrequired
The CSV file to upload
Responses
- 200
- 400
- 401
- 405
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
id uuid
name string
status string
Possible values: [IN_PROGRESS, COMPLETED, FAILED, DELETING, VERIFICATION]
{
"id": "00000000-0000-0000-0000-000000000000",
"name": "my contacts",
"status": "IN_PROGRESS"
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Some error message"
}
API key is missing or invalid
Method Not Allowed
Loading...