@@ -134,7 +134,7 @@ smsgate [global options] command [command options] [arguments...]
134134
135135### Commands
136136
137- The CLI offers four main groups of commands:
137+ The CLI offers three main groups of commands:
138138
139139- ** Messages** : Commands for sending messages and checking their status, including batch operations from CSV and Excel files.
140140- ** Webhooks** : Commands for managing webhooks, including creating, updating, and deleting them.
@@ -239,7 +239,7 @@ The CLI supports sending messages in bulk from CSV and Excel files. The `batch s
239239smsgate batch send contacts.csv --map phone=Phone,text=Message
240240
241241# Send messages from an Excel file with specific sheet
242- smsgate batch send campaign.xlsx --sheet Sheet1 --map phone=A ,text=B
242+ smsgate batch send campaign.xlsx --sheet Sheet1 --map phone=Phone ,text=Message
243243
244244# Send with custom delimiter and no header
245245smsgate batch send data.csv --delimiter ' ;' --header=false --map phone=col_1,text=col_2
@@ -265,13 +265,14 @@ The shared delivery/device options from the `send` command are also available (e
265265
266266The ` --map ` option defines how columns in your file map to message fields:
267267
268- | Field | Required | Description |
269- | ------------ | -------- | ------------------------------------- |
270- | ` phone ` | ✅ | Phone number column |
271- | ` text ` | ✅ | Message text column |
272- | ` device_id ` | ❌ | Device identifier column |
273- | ` sim_number ` | ❌ | SIM number column (1-255) |
274- | ` priority ` | ❌ | Message priority column (-128 to 127) |
268+ | Field | Required | Description |
269+ | ------------ | -------- | --------------------------------------------- |
270+ | ` phone ` | ✅ | Phone number column |
271+ | ` text ` | ✅ | Message text column |
272+ | ` id ` | ❌ | Message ID column (UUID generated when empty) |
273+ | ` device_id ` | ❌ | Device identifier column |
274+ | ` sim_number ` | ❌ | SIM number column (1-255) |
275+ | ` priority ` | ❌ | Message priority column (-128 to 127) |
275276
276277** Mapping examples:**
277278
0 commit comments