>- 10DLC brand and campaign registration for US A2P messaging compliance. Assign phone numbers to campaigns.
npx skills add https://github.com/team-telnyx/ai --skill telnyx-10dlc-java
<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->
<!-- Maven -->
<dependency>
<groupId>com.telnyx.sdk</groupId>
<artifactId>telnyx</artifactId>
<version>6.82.0</version>
</dependency>
// Gradle
implementation("com.telnyx.sdk:telnyx:6.82.0")
import 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:
import com.telnyx.sdk.models.messaging10dlc.brand.BrandCreateParams;
import com.telnyx.sdk.models.messaging10dlc.brand.EntityType;
import com.telnyx.sdk.models.messaging10dlc.brand.TelnyxBrand;
import com.telnyx.sdk.models.messaging10dlc.brand.Vertical;
BrandCreateParams params = BrandCreateParams.builder()
.country("US")
.displayName("ABC Mobile")
.email("[email protected]")
.entityType(EntityType.PRIVATE_PROFIT)
.vertical(Vertical.TECHNOLOGY)
.build();
TelnyxBrand telnyxBrand = client.messaging10dlc().brand().create(params);
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().Do not invent Telnyx parameters, enums, response fields, or webhook fields.
## Additional Operations, read the optional-parameters section and the response-schemas section.Brand registration is the entrypoint for any US A2P 10DLC campaign flow.
client.messaging10dlc().brand().create() — POST /10dlc/brand
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| entityType | object | Yes | Entity type behind the brand. |
| displayName | string | Yes | Display name, marketing name, or DBA name of the brand. |
| country | string | Yes | ISO2 2 characters country code. |
| email | string | Yes | Valid email address of brand support contact. |
| vertical | object | Yes | Vertical or industry segment of the brand. |
| companyName | string | No | (Required for Non-profit/private/public) Legal company name. |
| firstName | string | No | First name of business contact. |
| lastName | string | No | Last name of business contact. |
| ... | | | +16 optional params in references/api-details.md |
import com.telnyx.sdk.models.messaging10dlc.brand.BrandCreateParams;
import com.telnyx.sdk.models.messaging10dlc.brand.EntityType;
import com.telnyx.sdk.models.messaging10dlc.brand.TelnyxBrand;
import com.telnyx.sdk.models.messaging10dlc.brand.Vertical;
BrandCreateParams params = BrandCreateParams.builder()
.country("US")
.displayName("ABC Mobile")
.email("[email protected]")
.entityType(EntityType.PRIVATE_PROFIT)
.vertical(Vertical.TECHNOLOGY)
.build();
TelnyxBrand telnyxBrand = client.messaging10dlc().brand().create(params);
Primary response fields:
telnyxBrand.brandIdtelnyxBrand.identityStatustelnyxBrand.statustelnyxBrand.displayNametelnyxBrand.statetelnyxBrand.altBusinessIdCampaign submission is the compliance-critical step that determines whether traffic can be provisioned.
client.messaging10dlc().campaignBuilder().submit() — POST /10dlc/campaignBuilder
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| brandId | string (UUID) | Yes | Alphanumeric identifier of the brand associated with this ca... |
| description | string | Yes | Summary description of this campaign. |
| usecase | string | Yes | Campaign usecase. |
| ageGated | boolean | No | Age gated message content in campaign. |
| autoRenewal | boolean | No | Campaign subscription auto-renewal option. |
| directLending | boolean | No | Direct lending or loan arrangement |
| ... | | | +29 optional params in references/api-details.md |
import com.telnyx.sdk.models.messaging10dlc.campaign.TelnyxCampaignCsp;
import com.telnyx.sdk.models.messaging10dlc.campaignbuilder.CampaignBuilderSubmitParams;
CampaignBuilderSubmitParams params = CampaignBuilderSubmitParams.builder()
.brandId("BXXXXXX")
.description("Two-factor authentication messages")
.usecase("2FA")
.sample1("Your verification code is {{code}}")
.build();
TelnyxCampaignCsp telnyxCampaignCsp = client.messaging10dlc().campaignBuilder().submit(params);
Primary response fields:
telnyxCampaignCsp.campaignIdtelnyxCampaignCsp.brandIdtelnyxCampaignCsp.campaignStatustelnyxCampaignCsp.submissionStatustelnyxCampaignCsp.failureReasonstelnyxCampaignCsp.statusMessaging profile assignment is the practical handoff from registration to send-ready messaging infrastructure.
client.messaging10dlc().phoneNumberAssignmentByProfile().assign() — POST /10dlc/phoneNumberAssignmentByProfile
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| messagingProfileId | string (UUID) | Yes | The ID of the messaging profile that you want to link to the... |
| campaignId | string (UUID) | Yes | The ID of the campaign you want to link to the specified mes... |
| tcrCampaignId | string (UUID) | No | The TCR ID of the shared campaign you want to link to the sp... |
import com.telnyx.sdk.models.messaging10dlc.phonenumberassignmentbyprofile.PhoneNumberAssignmentByProfileAssignParams;
import com.telnyx.sdk.models.messaging10dlc.phonenumberassignmentbyprofile.PhoneNumberAssignmentByProfileAssignResponse;
PhoneNumberAssignmentByProfileAssignParams params = PhoneNumberAssignmentByProfileAssignParams.builder()
.messagingProfileId("4001767e-ce0f-4cae-9d5f-0d5e636e7809")
.campaignId("CXXX001")
.build();
PhoneNumberAssignmentByProfileAssignResponse response = client.messaging10dlc().phoneNumberAssignmentByProfile().assign(params);
Primary response fields:
response.messagingProfileIdresponse.campaignIdresponse.taskIdresponse.tcrCampaignIdTelnyx signs webhooks with Ed25519. Each request includes telnyx-signature-ed25519
and telnyx-timestamp headers. Always verify signatures in production:
import com.telnyx.sdk.core.UnwrapWebhookParams;
import com.telnyx.sdk.core.http.Headers;
// In your webhook handler (e.g., Spring — use raw body):
@PostMapping("/webhooks")
public ResponseEntity<String> handleWebhook(
@RequestBody String payload,
HttpServletRequest request) {
try {
Headers headers = Headers.builder()
.put("telnyx-signature-ed25519", request.getHeader("telnyx-signature-ed25519"))
.put("telnyx-timestamp", request.getHeader("telnyx-timestamp"))
.build();
var event = client.webhooks().unwrap(
UnwrapWebhookParams.builder()
.body(payload)
.headers(headers)
.build());
// Signature valid — process the event
System.out.println("Received webhook event");
return ResponseEntity.ok("OK");
} catch (Exception e) {
System.err.println("Webhook verification failed: " + e.getMessage());
return ResponseEntity.badRequest().body("Invalid signature");
}
}
These webhook payload fields are inline because they are part of the primary integration path.
| Field | Type | Description |
|-------|------|-------------|
| brandId | string | Brand ID associated with the campaign. |
| campaignId | string | The ID of the campaign. |
| createDate | string | Unix timestamp when campaign was created. |
| cspId | string | Alphanumeric identifier of the CSP associated with this campaign. |
| isTMobileRegistered | boolean | Indicates whether the campaign is registered with T-Mobile. |
| type | enum: TELNYX_EVENT, REGISTRATION, MNO_REVIEW, TELNYX_REVIEW, NUMBER_POOL_PROVISIONED, NUMBER_POOL_DEPROVISIONED, TCR_EVENT, VERIFIED | |
| description | string | Description of the event. |
| status | enum: ACCEPTED, REJECTED, DORMANT, success, failed | The status of the campaign. |
If you need webhook fields that are not listed inline here, read the webhook payload reference before writing the handler.
Use these when the core tasks above are close to your flow, but you need a common variation or follow-up step.
Inspect the current state of an existing brand registration.
client.messaging10dlc().brand().retrieve() — GET /10dlc/brand/{brandId}
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| brandId | string (UUID) | Yes | Unique identifier of the brand. |
import com.telnyx.sdk.models.messaging10dlc.brand.BrandRetrieveParams;
import com.telnyx.sdk.models.messaging10dlc.brand.BrandRetrieveResponse;
BrandRetrieveResponse brand = client.messaging10dlc().brand().retrieve("BXXX001");
Primary response fields:
brand.statusbrand.statebrand.altBusinessIdbrand.altBusinessIdTypebrand.assignedCampaignsCountbrand.brandIdFetch the current state before updating, deleting, or making control-flow decisions.
client.messaging10dlc().campaignBuilder().brand().qualifyByUsecase() — GET /10dlc/campaignBuilder/brand/{brandId}/usecase/{usecase}
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| usecase | string | Yes | Unique identifier of the usecase. |
| brandId | string (UUID) | Yes | Unique identifier of the brand. |
import com.telnyx.sdk.models.messaging10dlc.campaignbuilder.brand.BrandQualifyByUsecaseParams;
import com.telnyx.sdk.models.messaging10dlc.campaignbuilder.brand.BrandQualifyByUsecaseResponse;
BrandQualifyByUsecaseParams params = BrandQualifyByUsecaseParams.builder()
.brandId("BXXX001")
.usecase("CUSTOMER_CARE")
.build();
BrandQualifyByUsecaseResponse response = client.messaging10dlc().campaignBuilder().brand().qualifyByUsecase(params);
Primary response fields:
response.annualFeeresponse.maxSubUsecasesresponse.minSubUsecasesresponse.mnoMetadataresponse.monthlyFeeresponse.quarterlyFeeCreate or provision an additional resource when the core tasks do not cover this flow.
client.messaging10dlc().phoneNumberCampaigns().create() — POST /10dlc/phone_number_campaigns
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| phoneNumber | string (E.164) | Yes | The phone number you want to link to a specified campaign. |
| campaignId | string (UUID) | Yes | The ID of the campaign you want to link to the specified pho... |
import com.telnyx.sdk.models.messaging10dlc.phonenumbercampaigns.PhoneNumberCampaign;
import com.telnyx.sdk.models.messaging10dlc.phonenumbercampaigns.PhoneNumberCampaignCreate;
PhoneNumberCampaignCreate params = PhoneNumberCampaignCreate.builder()
.campaignId("4b300178-131c-d902-d54e-72d90ba1620j")
.phoneNumber("+18005550199")
.build();
PhoneNumberCampaign phoneNumberCampaign = client.messaging10dlc().phoneNumberCampaigns().create(params);
Primary response fields:
phoneNumberCampaign.assignmentStatusphoneNumberCampaign.brandIdphoneNumberCampaign.campaignIdphoneNumberCampaign.createdAtphoneNumberCampaign.failureReasonsphoneNumberCampaign.phoneNumberInspect the current state of an existing campaign registration.
client.messaging10dlc().campaign().retrieve() — GET /10dlc/campaign/{campaignId}
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| campaignId | string (UUID) | Yes | Unique identifier of the campaign. |
import com.telnyx.sdk.models.messaging10dlc.campaign.CampaignRetrieveParams;
import com.telnyx.sdk.models.messaging10dlc.campaign.TelnyxCampaignCsp;
TelnyxCampaignCsp telnyxCampaignCsp = client.messaging10dlc().campaign().retrieve("CXXX001");
Primary response fields:
telnyxCampaignCsp.statustelnyxCampaignCsp.ageGatedtelnyxCampaignCsp.autoRenewaltelnyxCampaignCsp.billedDatetelnyxCampaignCsp.brandDisplayNametelnyxCampaignCsp.brandIdInspect available resources or choose an existing resource before mutating it.
client.messaging10dlc().brand().list() — GET /10dlc/brand
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| sort | enum (assignedCampaignsCount, -assignedCampaignsCount, brandId, -brandId, createdAt, ...) | No | Specifies the sort order for results. |
| page | integer | No | Page number to retrieve (1-based). |
| recordsPerPage | integer | No | number of records per page. |
| ... | | | +6 optional params in references/api-details.md |
import com.telnyx.sdk.models.messaging10dlc.brand.BrandListPage;
import com.telnyx.sdk.models.messaging10dlc.brand.BrandListParams;
BrandListPage page = client.messaging10dlc().brand().list();
Primary response fields:
page.pagepage.recordspage.totalRecordsFetch the current state before updating, deleting, or making control-flow decisions.
client.messaging10dlc().brand().getFeedback() — GET /10dlc/brand/feedback/{brandId}
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| brandId | string (UUID) | Yes | Unique identifier of the brand. |
import com.telnyx.sdk.models.messaging10dlc.brand.BrandGetFeedbackParams;
import com.telnyx.sdk.models.messaging10dlc.brand.BrandGetFeedbackResponse;
BrandGetFeedbackResponse response = client.messaging10dlc().brand().getFeedback("BXXX001");
Primary response fields:
response.brandIdresponse.categoryUse the core tasks above first. The operations below are indexed here with exact SDK methods and required params; use references/api-details.md for full optional params, response schemas, and lower-frequency webhook payloads.
Before using any operation below, read the optional-parameters section and the response-schemas section so you do not guess missing fields.
| Operation | SDK method | Endpoint | Use when | Required params |
|-----------|------------|----------|----------|-----------------|
| Get Brand SMS OTP Status | client.messaging10dlc().brand().getSmsOtpByReference() | GET /10dlc/brand/smsOtp/{referenceId} | Fetch the current state before updating, deleting, or making control-flow decisions. | referenceId |
| Update Brand | client.messaging10dlc().brand().update() | PUT /10dlc/brand/{brandId} | Inspect the current state of an existing brand registration. | entityType, displayName, country, email, +2 more |
| Delete Brand | client.messaging10dlc().brand().delete() | DELETE /10dlc/brand/{brandId} | Inspect the current state of an existing brand registration. | brandId |
| Resend brand 2FA email | client.messaging10dlc().brand().resend2faEmail() | POST /10dlc/brand/{brandId}/2faEmail | Create or provision an additional resource when the core tasks do not cover this flow. | brandId |
| List External Vettings | client.messaging10dlc().brand().externalVetting().list() | GET /10dlc/brand/{brandId}/externalVetting | Fetch the current state before updating, deleting, or making control-flow decisions. | brandId |
| Order Brand External Vetting | client.messaging10dlc().brand().externalVetting().order() | POST /10dlc/brand/{brandId}/externalVetting | Create or provision an additional resource when the core tasks do not cover this flow. | evpId, vettingClass, brandId |
| Import External Vetting Record | client.messaging10dlc().brand().externalVetting().imports() | PUT /10dlc/brand/{brandId}/externalVetting | Modify an existing resource without recreating it. | evpId, vettingId, brandId |
| Revet Brand | client.messaging10dlc().brand().revet() | PUT /10dlc/brand/{brandId}/revet | Modify an existing resource without recreating it. | brandId |
| Get Brand SMS OTP Status by Brand ID | client.messaging10dlc().brand().retrieveSmsOtpStatus() | GET /10dlc/brand/{brandId}/smsOtp | Fetch the current state before updating, deleting, or making control-flow decisions. | brandId |
| Trigger Brand SMS OTP | client.messaging10dlc().brand().triggerSmsOtp() | POST /10dlc/brand/{brandId}/smsOtp | Create or provision an additional resource when the core tasks do not cover this flow. | pinSms, successSms, brandId |
| Verify Brand SMS OTP | client.messaging10dlc().brand().verifySmsOtp() | PUT /10dlc/brand/{brandId}/smsOtp | Modify an existing resource without recreating it. | otpPin, brandId |
| List Campaigns | client.messaging10dlc().campaign().list() | GET /10dlc/campaign | Inspect available resources or choose an existing resource before mutating it. | None |
| Accept Shared Campaign | client.messaging10dlc().campaign().acceptSharing() | POST /10dlc/campaign/acceptSharing/{campaignId} | Create or provision an additional resource when the core tasks do not cover this flow. | campaignId |
| Get Campaign Cost | client.messaging10dlc().campaign().usecase().getCost() | GET /10dlc/campaign/usecase/cost | Inspect available resources or choose an existing resource before mutating it. | None |
| Update campaign | client.messaging10dlc().campaign().update() | PUT /10dlc/campaign/{campaignId} | Inspect the current state of an existing campaign registration. | campaignId |
| Deactivate campaign | client.messaging10dlc().campaign().deactivate() | DELETE /10dlc/campaign/{campaignId} | Inspect the current state of an existing campaign registration. | campaignId |
| Submit campaign appeal for manual review | client.messaging10dlc().campaign().submitAppeal() | POST /10dlc/campaign/{campaignId}/appeal | Create or provision an additional resource when the core tasks do not cover this flow. | appealReason, campaignId |
| Get Campaign Mno Metadata | client.messaging10dlc().campaign().getMnoMetadata() | GET /10dlc/campaign/{campaignId}/mnoMetadata | Fetch the current state before updating, deleting, or making control-flow decisions. | campaignId |
| Get campaign operation status | client.messaging10dlc().campaign().getOperationStatus() | GET /10dlc/campaign/{campaignId}/operationStatus | Fetch the current state before updating, deleting, or making control-flow decisions. | campaignId |
| Get OSR campaign attributes | client.messaging10dlc().campaign().osr().getAttributes() | GET /10dlc/campaign/{campaignId}/osr/attributes | Fetch the current state before updating, deleting, or making control-flow decisions. | campaignId |
| Get Sharing Status | client.messaging10dlc().campaign().getSharingStatus() | GET /10dlc/campaign/{campaignId}/sharing | Fetch the current state before updating, deleting, or making control-flow decisions. | campaignId |
| List shared partner campaigns | client.messaging10dlc().partnerCampaigns().listSharedByMe() | GET /10dlc/partnerCampaign/sharedByMe | Inspect available resources or choose an existing resource before mutating it. | None |
| Get Sharing Status | client.messaging10dlc().partnerCampaigns().retrieveSharingStatus() | GET /10dlc/partnerCampaign/{campaignId}/sharing | Fetch the current state before updating, deleting, or making control-flow decisions. | campaignId |
| List Shared Campaigns | client.messaging10dlc().partnerCampaigns().list() | GET /10dlc/partner_campaigns | Inspect available resources or choose an existing resource before mutating it. | None |
| Get Single Shared Campaign | client.messaging10dlc().partnerCampaigns().retrieve() | GET /10dlc/partner_campaigns/{campaignId} | Fetch the current state before updating, deleting, or making control-flow decisions. | campaignId |
| Update Single Shared Campaign | client.messaging10dlc().partnerCampaigns().update() | PATCH /10dlc/partner_campaigns/{campaignId} | Modify an existing resource without recreating it. | campaignId |
| Get Assignment Task Status | client.messaging10dlc().phoneNumberAssignmentByProfile().retrieveStatus() | GET /10dlc/phoneNumberAssignmentByProfile/{taskId} | Fetch the current state before updating, deleting, or making control-flow decisions. | taskId |
| Get Phone Number Status | client.messaging10dlc().phoneNumberAssignmentByProfile().listPhoneNumberStatus() | GET /10dlc/phoneNumberAssignmentByProfile/{taskId}/phoneNumbers | Fetch the current state before updating, deleting, or making control-flow decisions. | taskId |
| List phone number campaigns | client.messaging10dlc().phoneNumberCampaigns().list() | GET /10dlc/phone_number_campaigns | Inspect available resources or choose an existing resource before mutating it. | None |
| Get Single Phone Number Campaign | client.messaging10dlc().phoneNumberCampaigns().retrieve() | GET /10dlc/phone_number_campaigns/{phoneNumber} | Fetch the current state before updating, deleting, or making control-flow decisions. | phoneNumber |
| Create New Phone Number Campaign | client.messaging10dlc().phoneNumberCampaigns().update() | PUT /10dlc/phone_number_campaigns/{phoneNumber} | Modify an existing resource without recreating it. | phoneNumber, campaignId, phoneNumber |
| Delete Phone Number Campaign | client.messaging10dlc().phoneNumberCampaigns().delete() | DELETE /10dlc/phone_number_campaigns/{phoneNumber} | Remove, detach, or clean up an existing resource. | phoneNumber |
For exhaustive optional parameters, full response schemas, and complete webhook payloads, see references/api-details.md.
Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a personalized growth report to your Slack DMs.
Automate Brevo (Sendinblue) tasks via Rube MCP (Composio): manage email campaigns, create/edit templates, track senders, and monitor campaign performance. Always search tools first for current schemas.
Automate Klaviyo tasks via Rube MCP (Composio): manage email/SMS campaigns, inspect campaign messages, track tags, and monitor send jobs. Always search tools first for current schemas.
Research a prospect then draft personalized outreach. Uses web research by default, supercharged with enrichment and CRM. Trigger with "draft outreach to [person/company]", "write cold email to [prospect]", "reach out to [name]".
You are an expert in email marketing and automation. Your goal is to create email sequences that nurture relationships, drive action, and move people toward conversion.
Email has the highest ROI of any marketing channel. $36 for every $1 spent. Yet most startups treat it as an afterthought - bulk blasts, no personalization, landing in spam folders.
Write personalized trade show booth invitation emails, pre-show outreach sequences, and exhibition meeting requests. Use this skill when the user needs to invite prospects, customers, partners, or VIPs to visit their booth at a trade show or exhibition, write pre-show emails, create multi-touch invitation sequences, draft meeting requests for an upcoming event, or write any outreach related to an exhibition or expo they're attending. Triggers on requests like 'write an email inviting people to our booth', 'I need a pre-show outreach sequence for MEDICA', 'draft an invitation for our CES booth', 'help me get meetings before the trade show', 'booth traffic email', 'pre-show marketing email', 'trade show outreach template', 'exhibition invitation letter', or casual phrasing like 'we're exhibiting next month, need to get people to come by'. If the user mentions an upcoming show and wants to write emails to drive booth traffic or schedule meetings, this is the right skill.
Email has the highest ROI of any marketing channel. $36 for every $1 spent. Yet most startups treat it as an afterthought - bulk blasts, no personalization, landing in spam folders. This skill covers transactional email that works, marketing automation that converts, deliverability that reaches inboxes, and the infrastructure decisions that scale. Use when: keywords, file_patterns, code_patterns.
Take team-telnyx/telnyx-10dlc-java from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.