Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Create and manage messaging profiles with number pools, sticky sender, and geomatch features. Configure short codes for high-volume messaging. This skill provides Java SDK examples.
.claude/skills/team-telnyx-telnyx-messaging-profiles-java/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 100% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 138% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 159% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 323% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 282% | 0% |
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
text<!-- Maven --> <dependency> <groupId>com.telnyx.sdk</groupId> <artifactId>telnyx</artifactId> <version>6.89.0</version> </dependency> // Gradle implementation("com.telnyx.sdk:telnyx:6.89.0")
javaimport com.telnyx.sdk.client.TelnyxClient; import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient; TelnyxClient client = TelnyxOkHttpClient.fromEnv();
All examples below assume client is already initialized as shown above.
All API calls can fail with network errors, rate limits (429), validation errors (422), or authentication errors (401). Always handle errors in production code:
javaimport com.telnyx.sdk.errors.TelnyxServiceException; try { var result = client.messages().send(params); } catch (TelnyxServiceException e) { System.err.println("API error " + e.statusCode() + ": " + e.getMessage()); if (e.statusCode() == 422) { System.err.println("Validation error — check required fields and formats"); } else if (e.statusCode() == 429) { // Rate limited — wait and retry with exponential backoff Thread.sleep(1000); } }
Common error codes: 401 invalid API key, 403 insufficient permissions, 404 resource not found, 422 validation error (check field formats), 429 rate limited (retry with exponential backoff).
.autoPager() for automatic iteration: for (var item : page.autoPager()) { ... }. For manual control, use .hasNextPage() and .nextPage().GET /messaging_profiles
javaimport com.telnyx.sdk.models.messagingprofiles.MessagingProfileListPage; import com.telnyx.sdk.models.messagingprofiles.MessagingProfileListParams; MessagingProfileListPage page = client.messagingProfiles().list();
Returns: ai_assistant_id (string | null), alpha_sender (string | null), created_at (date-time), daily_spend_limit (string), daily_spend_limit_enabled (boolean), enabled (boolean), health_webhook_url (url), id (uuid), mms_fall_back_to_sms (boolean), mms_transcoding (boolean), mobile_only (boolean), name (string), number_pool_settings (object | null), organization_id (string), record_type (enum: messaging_profile), redaction_enabled (boolean), redaction_level (integer), resource_group_id (string | null), smart_encoding (boolean), updated_at (date-time), url_shortener_settings (object | null), v1_secret (string), webhook_api_version (enum: 1, 2, 2010-04-01), webhook_failover_url (url), webhook_url (url), whitelisted_destinations (arraystring])
POST /messaging_profiles — Required: name, whitelisted_destinations
Optional: ai_assistant_id (string | null), alpha_sender (string | null), daily_spend_limit (string), daily_spend_limit_enabled (boolean), enabled (boolean), health_webhook_url (url), mms_fall_back_to_sms (boolean), mms_transcoding (boolean), mobile_only (boolean), number_pool_settings (object | null), resource_group_id (string | null), smart_encoding (boolean), url_shortener_settings (object | null), webhook_api_version (enum: 1, 2, 2010-04-01), webhook_failover_url (url), webhook_url (url)
javaimport com.telnyx.sdk.models.messagingprofiles.MessagingProfileCreateParams; import com.telnyx.sdk.models.messagingprofiles.MessagingProfileCreateResponse; MessagingProfileCreateParams params = MessagingProfileCreateParams.builder() .name("My name") .addWhitelistedDestination("US") .build(); MessagingProfileCreateResponse messagingProfile = client.messagingProfiles().create(params);
Returns: ai_assistant_id (string | null), alpha_sender (string | null), created_at (date-time), daily_spend_limit (string), daily_spend_limit_enabled (boolean), enabled (boolean), health_webhook_url (url), id (uuid), mms_fall_back_to_sms (boolean), mms_transcoding (boolean), mobile_only (boolean), name (string), number_pool_settings (object | null), organization_id (string), record_type (enum: messaging_profile), redaction_enabled (boolean), redaction_level (integer), resource_group_id (string | null), smart_encoding (boolean), updated_at (date-time), url_shortener_settings (object | null), v1_secret (string), webhook_api_version (enum: 1, 2, 2010-04-01), webhook_failover_url (url), webhook_url (url), whitelisted_destinations (arraystring])
GET /messaging_profiles/{id}
javaimport com.telnyx.sdk.models.messagingprofiles.MessagingProfileRetrieveParams; import com.telnyx.sdk.models.messagingprofiles.MessagingProfileRetrieveResponse; MessagingProfileRetrieveResponse messagingProfile = client.messagingProfiles().retrieve("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e");
Returns: ai_assistant_id (string | null), alpha_sender (string | null), created_at (date-time), daily_spend_limit (string), daily_spend_limit_enabled (boolean), enabled (boolean), health_webhook_url (url), id (uuid), mms_fall_back_to_sms (boolean), mms_transcoding (boolean), mobile_only (boolean), name (string), number_pool_settings (object | null), organization_id (string), record_type (enum: messaging_profile), redaction_enabled (boolean), redaction_level (integer), resource_group_id (string | null), smart_encoding (boolean), updated_at (date-time), url_shortener_settings (object | null), v1_secret (string), webhook_api_version (enum: 1, 2, 2010-04-01), webhook_failover_url (url), webhook_url (url), whitelisted_destinations (arraystring])
PATCH /messaging_profiles/{id}
Optional: ai_assistant_id (string | null), alpha_sender (string | null), created_at (date-time), daily_spend_limit (string), daily_spend_limit_enabled (boolean), enabled (boolean), id (uuid), mms_fall_back_to_sms (boolean), mms_transcoding (boolean), mobile_only (boolean), name (string), number_pool_settings (object | null), record_type (enum: messaging_profile), smart_encoding (boolean), updated_at (date-time), url_shortener_settings (object | null), v1_secret (string), webhook_api_version (enum: 1, 2, 2010-04-01), webhook_failover_url (url), webhook_url (url), whitelisted_destinations (arraystring])
javaimport com.telnyx.sdk.models.messagingprofiles.MessagingProfileUpdateParams; import com.telnyx.sdk.models.messagingprofiles.MessagingProfileUpdateResponse; MessagingProfileUpdateResponse messagingProfile = client.messagingProfiles().update("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e");
Returns: ai_assistant_id (string | null), alpha_sender (string | null), created_at (date-time), daily_spend_limit (string), daily_spend_limit_enabled (boolean), enabled (boolean), health_webhook_url (url), id (uuid), mms_fall_back_to_sms (boolean), mms_transcoding (boolean), mobile_only (boolean), name (string), number_pool_settings (object | null), organization_id (string), record_type (enum: messaging_profile), redaction_enabled (boolean), redaction_level (integer), resource_group_id (string | null), smart_encoding (boolean), updated_at (date-time), url_shortener_settings (object | null), v1_secret (string), webhook_api_version (enum: 1, 2, 2010-04-01), webhook_failover_url (url), webhook_url (url), whitelisted_destinations (arraystring])
DELETE /messaging_profiles/{id}
javaimport com.telnyx.sdk.models.messagingprofiles.MessagingProfileDeleteParams; import com.telnyx.sdk.models.messagingprofiles.MessagingProfileDeleteResponse; MessagingProfileDeleteResponse messagingProfile = client.messagingProfiles().delete("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e");
Returns: ai_assistant_id (string | null), alpha_sender (string | null), created_at (date-time), daily_spend_limit (string), daily_spend_limit_enabled (boolean), enabled (boolean), health_webhook_url (url), id (uuid), mms_fall_back_to_sms (boolean), mms_transcoding (boolean), mobile_only (boolean), name (string), number_pool_settings (object | null), organization_id (string), record_type (enum: messaging_profile), redaction_enabled (boolean), redaction_level (integer), resource_group_id (string | null), smart_encoding (boolean), updated_at (date-time), url_shortener_settings (object | null), v1_secret (string), webhook_api_version (enum: 1, 2, 2010-04-01), webhook_failover_url (url), webhook_url (url), whitelisted_destinations (arraystring])
GET /messaging_profiles/{id}/phone_numbers
javaimport com.telnyx.sdk.models.messagingprofiles.MessagingProfileListPhoneNumbersPage; import com.telnyx.sdk.models.messagingprofiles.MessagingProfileListPhoneNumbersParams; MessagingProfileListPhoneNumbersPage page = client.messagingProfiles().listPhoneNumbers("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e");
Returns: country_code (string), created_at (date-time), eligible_messaging_products (arraystring]), features (object), health (object), id (string), messaging_product (string), messaging_profile_id (string | null), organization_id (string), phone_number (string), record_type (enum: messaging_phone_number, messaging_settings), tags (arraystring]), traffic_type (string), type (enum: long-code, toll-free, short-code, longcode, tollfree, shortcode), updated_at (date-time)
GET /messaging_profiles/{id}/short_codes
javaimport com.telnyx.sdk.models.messagingprofiles.MessagingProfileListShortCodesPage; import com.telnyx.sdk.models.messagingprofiles.MessagingProfileListShortCodesParams; MessagingProfileListShortCodesPage page = client.messagingProfiles().listShortCodes("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e");
Returns: country_code (string), created_at (date-time), id (uuid), messaging_profile_id (string | null), record_type (enum: short_code), short_code (string), tags (array), updated_at (date-time)
GET /short_codes
javaimport com.telnyx.sdk.models.shortcodes.ShortCodeListPage; import com.telnyx.sdk.models.shortcodes.ShortCodeListParams; ShortCodeListPage page = client.shortCodes().list();
Returns: country_code (string), created_at (date-time), id (uuid), messaging_profile_id (string | null), record_type (enum: short_code), short_code (string), tags (array), updated_at (date-time)
GET /short_codes/{id}
javaimport com.telnyx.sdk.models.shortcodes.ShortCodeRetrieveParams; import com.telnyx.sdk.models.shortcodes.ShortCodeRetrieveResponse; ShortCodeRetrieveResponse shortCode = client.shortCodes().retrieve("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e");
Returns: country_code (string), created_at (date-time), id (uuid), messaging_profile_id (string | null), record_type (enum: short_code), short_code (string), tags (array), updated_at (date-time)
Update the settings for a specific short code. To unbind a short code from a profile, set the messaging_profile_id to null or an empty string. To add or update tags, include the tags field as an array of strings.
PATCH /short_codes/{id} — Required: messaging_profile_id
Optional: tags (array)
javaimport com.telnyx.sdk.models.shortcodes.ShortCodeUpdateParams; import com.telnyx.sdk.models.shortcodes.ShortCodeUpdateResponse; ShortCodeUpdateParams params = ShortCodeUpdateParams.builder() .id("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e") .messagingProfileId("abc85f64-5717-4562-b3fc-2c9600000000") .build(); ShortCodeUpdateResponse shortCode = client.shortCodes().update(params);
Returns: country_code (string), created_at (date-time), id (uuid), messaging_profile_id (string | null), record_type (enum: short_code), short_code (string), tags (array), updated_at (date-time)
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 13,359 | 8,988 | -33% | 1 | 1 | 0% | 3,020 | 6,041 | +100% | 0 | 0 | — |
case-02 | fail→pass | 13,166 | 10,060 | -24% | 1 | 1 | 0% | 2,610 | 6,215 | +138% | 0 | 0 | — |
case-03 | fail→pass | 11,008 | 9,286 | -16% | 1 | 1 | 0% | 2,359 | 6,103 | +159% | 0 | 0 | — |
case-04 | fail→pass | 5,037 | 1,487 | -70% | 1 | 1 | 0% | 1,002 | 4,234 | +323% | 0 | 0 | — |
case-05 | fail→pass | 5,493 | 1,489 | -73% | 1 | 1 | 0% | 1,094 | 4,178 | +282% | 0 | 0 | — |
case-06 | fail→pass | 13,673 | 2,041 | -85% | 1 | 1 | 0% | 2,649 | 4,303 | +62% | 0 | 0 | — |
case-07 | fail→pass | 10,404 | 8,561 | -18% | 1 | 1 | 0% | 2,361 | 4,691 | +99% | 0 | 0 | — |
case-08 | fail→pass | 7,962 | 4,362 | -45% | 1 | 1 | 0% | 1,692 | 4,870 | +188% | 0 | 0 | — |
case-09 | fail→pass | 11,286 | 8,209 | -27% | 1 | 1 | 0% | 2,335 | 5,579 | +139% | 0 | 0 | — |
case-10 | fail→pass | 11,541 | 3,871 | -66% | 1 | 1 | 0% | 2,268 | 4,537 | +100% | 0 | 0 | — |
case-11 | fail→pass | 13,906 | 5,363 | -61% | 1 | 1 | 0% | 2,283 | 4,696 | +106% | 0 | 0 | — |
case-20 | fail→fail | 11,177 | 8,909 | -20% | 1 | 1 | 0% | 1,828 | 5,964 | +226% | 0 | 0 | — |
case-12 | fail→pass | 9,485 | 3,750 | -60% | 1 | 1 | 0% | 1,973 | 4,740 | +140% | 0 | 0 | — |
case-13 | fail→pass | 9,932 | 2,797 | -72% | 1 | 1 | 0% | 1,775 | 4,476 | +152% | 0 | 0 | — |
case-14 | fail→pass | 38,964 | 2,628 | -93% | 1 | 1 | 0% | 1,651 | 4,425 | +168% | 0 | 0 | — |
case-15 | pass→pass | 15,877 | 2,358 | -85% | 1 | 1 | 0% | 1,162 | 4,356 | +275% | 0 | 0 | — |
case-21 | pass→pass | 32,114 | 24,968 | -22% | 1 | 1 | 0% | 3,435 | 8,295 | +141% | 0 | 0 | — |
case-16 | pass→pass | 13,350 | 1,853 | -86% | 1 | 1 | 0% | 2,415 | 4,291 | +78% | 0 | 0 | — |
case-17 | fail→pass | 17,660 | 4,386 | -75% | 1 | 1 | 0% | 3,047 | 4,852 | +59% | 0 | 0 | — |
case-18 | fail→pass | 9,599 | 1,621 | -83% | 1 | 1 | 0% | 1,794 | 4,191 | +134% | 0 | 0 | — |
case-19 | fail→pass | 11,223 | 2,661 | -76% | 1 | 1 | 0% | 1,643 | 4,306 | +162% | 0 | 0 | — |
case-22 | pass→pass | 14,690 | 13,482 | -8% | 1 | 1 | 0% | 3,263 | 6,254 | +92% | 0 | 0 | — |
case-23 | pass→pass | 42,700 | 4,946 | -88% | 1 | 1 | 0% | 2,397 | 5,015 | +109% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +74 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
| Model | Method | Date | Lift |
|---|---|---|---|
| gemini-3.6-flash | verified | 8/22/2026 | +70% |
Other measured skills in the registry, with their headline benchmark lift.