一键导入
create-list
Create contact lists and add recipients for messaging campaigns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create contact lists and add recipients for messaging campaigns.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Send MMS messages with images, GIFs, video, or audio.
Send SMS messages to a recipient or contact list, with optional scheduling and delivery tracking.
Create and manage webhooks for delivery updates, inbound messages, link hits, and opt-outs.
| name | create-list |
| description | Create contact lists and add recipients for messaging campaigns. |
You can create contact lists and add contacts using the Kudosity V1 API.
All list operations use V1 Basic Auth:
Authorization: Basic {credentials}{KUDOSITY_API_KEY}:{KUDOSITY_API_SECRET}KUDOSITY_API_KEY and KUDOSITY_API_SECRET environment variables set/setuphttps://api.transmitsms.comapplication/x-www-form-urlencodedcurl commands with Basic AuthEndpoint: POST /add-list.json
Required parameters:
name (string): A unique name for the listOptional parameters:
field_1 through field_10: Custom field names (firstname and lastname are created by default)Example curl command:
curl -s -X POST "https://api.transmitsms.com/add-list.json" \
-u "${KUDOSITY_API_KEY}:${KUDOSITY_API_SECRET}" \
-d "name=My Campaign List&field_1=email&field_2=postcode"
The response returns the list id — store this for adding contacts.
Endpoint: POST /add-to-list.json
Required parameters:
list_id (integer): The list ID returned from Step 1msisdn (string): Mobile number in E.164 international formatOptional parameters:
countrycode (string): 2-letter ISO country code (e.g., AU, US, GB, NZ) — auto-formats local numbers to internationalfirst_name (string): Contact's first namelast_name (string): Contact's last namefield_1 through field_10: Values for custom fields defined on the listExample curl command:
curl -s -X POST "https://api.transmitsms.com/add-to-list.json" \
-u "${KUDOSITY_API_KEY}:${KUDOSITY_API_SECRET}" \
-d "list_id=4213644&msisdn=0491570156&countrycode=AU&first_name=John&last_name=Doe&field_1=john@example.com"
/edit-list-member.json to update existing contacts.countrycode parameter to avoid formatting issues with local numbers.AU, New Zealand=NZ, United Kingdom=GB, United States=US0491570156 → international 61491570156