# Bulk upload members to a mailing list (CSV) Adds multiple members, up to 1000 per call, to a mailing list via CSV file. Endpoint: POST /v3/lists/{list_address}/members.csv Version: 3.0.0 Security: basicAuth ## Path parameters: - `list_address` (string, required) The mailing list's address ## Request fields (multipart/form-data): - `subscribed` (boolean) - `upsert` (boolean) - `members` (string) Absolute path to the CSV file ## Response 200 fields (application/json): - `list` (object) - `list.address` (string) The email address of the mailing list - `list.name` (string) The name of the mailing list - `list.description` (string) A description of the mailing list - `list.access_level` (string) List access level, one of: readonly, members, everyone - `list.reply_preference` (string) Set where replies should go: list or sender - `list.created_at` (string) Timestamp indicating the mailing list creation time in RFC 5322 format - `list.members_count` (integer) The number of members on the mailing list - `task-id` (string) Unique identifier for the background upload task - `message` (string) Success message ## Response 400 fields (application/json): - `message` (string) Error message ## Response 404 fields (application/json): - `message` (string) Error message ## Response 429 fields (application/json): - `message` (string) Error message