ワンクリックで
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 ページを確認してインストールできます。
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.
SOC 職業分類に基づく
| 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