Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

telnyx-10dlc-pythontelnyx 10dlc Python 测试

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

703

周安装

29

GitHub Stars

169

下载量

230
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:telnyx-10dlc-python(telnyx 10dlc Python 测试)
来源仓库:https://github.com/team-telnyx/skills
仓库路径:skills/telnyx-10dlc-python
安装命令:
npx skills add https://github.com/team-telnyx/skills --skill telnyx-10dlc-python
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/team-telnyx/skills --skill telnyx-10dlc-python

简介

用于辅助 Python 项目开发、测试和依赖管理。

  • 适合阅读代码、定位问题、整理运行命令和分析数据处理逻辑。
  • 需确认虚拟环境、依赖版本和测试入口后再执行相关操作。
  • 涉及脚本执行或文件读写时,应明确目录范围和输入输出边界。
  • telnyx-10dlc-python 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Telnyx 10DLC - Python

Installation

pip install telnyx

Setup

import os
from telnyx import Telnyx

client = Telnyx(
    api_key=os.environ.get("TELNYX_API_KEY"),  # This is the default and can be omitted
)

All examples below assume client is already initialized as shown above.

Error Handling

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 telnyx

try:
    telnyx_brand = client.messaging_10dlc.brand.create(
        country="US",
        display_name="ABC Mobile",
        email="support@example.com",
        entity_type="PRIVATE_PROFIT",
        vertical="TECHNOLOGY",
    )
except telnyx.APIConnectionError:
    print("Network error — check connectivity and retry")
except telnyx.RateLimitError:
    import time
    time.sleep(1)  # Check Retry-After header for actual delay
except telnyx.APIStatusError as e:
    print(f"API error {e.status_code}: {e.message}")
    if e.status_code == 422:
        print("Validation error — check required fields and formats")

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).

Important Notes

  • Pagination: List methods return an auto-paginating iterator. Use for item in page_result: to iterate through all pages automatically.

Operational Caveats

  • 10DLC is sequential: create the brand first, then submit the campaign, then attach messaging infrastructure such as the messaging profile.
  • Registration calls are not enough by themselves. Messaging cannot use the campaign until the assignment step completes successfully.
  • Treat registration status fields as part of the control flow. Do not assume the campaign is send-ready until the returned status fields confirm it.

Reference Use Rules

Do not invent Telnyx parameters, enums, response fields, or webhook fields.

Core Tasks

Create a brand

Brand registration is the entrypoint for any US A2P 10DLC campaign flow.

client.messaging_10dlc.brand.create()POST /10dlc/brand

ParameterTypeRequiredDescription
entity_typeobjectYesEntity type behind the brand.
display_namestringYesDisplay name, marketing name, or DBA name of the brand.
countrystringYesISO2 2 characters country code.
emailstringYesValid email address of brand support contact.
verticalobjectYesVertical or industry segment of the brand.
company_namestringNo(Required for Non-profit/private/public) Legal company name.
first_namestringNoFirst name of business contact.
last_namestringNoLast name of business contact.
...+16 optional params in references/api-details.md
telnyx_brand = client.messaging_10dlc.brand.create(
    country="US",
    display_name="ABC Mobile",
    email="support@example.com",
    entity_type="PRIVATE_PROFIT",
    vertical="TECHNOLOGY",
)
print(telnyx_brand.identity_status)

Primary response fields:

  • telnyx_brand.brand_id
  • telnyx_brand.identity_status
  • telnyx_brand.status
  • telnyx_brand.display_name
  • telnyx_brand.state
  • telnyx_brand.alt_business_id

Submit a campaign

Campaign submission is the compliance-critical step that determines whether traffic can be provisioned.

client.messaging_10dlc.campaign_builder.submit()POST /10dlc/campaignBuilder

ParameterTypeRequiredDescription
brand_idstring (UUID)YesAlphanumeric identifier of the brand associated with this ca...
descriptionstringYesSummary description of this campaign.
usecasestringYesCampaign usecase.
age_gatedbooleanNoAge gated message content in campaign.
auto_renewalbooleanNoCampaign subscription auto-renewal option.
direct_lendingbooleanNoDirect lending or loan arrangement
...+29 optional params in references/api-details.md
telnyx_campaign_csp = client.messaging_10dlc.campaign_builder.submit(
    brand_id="BXXXXXX",
    description="Two-factor authentication messages",
    usecase="2FA",
    sample_messages=["Your verification code is {{code}}"],
)
print(telnyx_campaign_csp.brand_id)

Primary response fields:

  • telnyx_campaign_csp.campaign_id
  • telnyx_campaign_csp.brand_id
  • telnyx_campaign_csp.campaign_status
  • telnyx_campaign_csp.submission_status
  • telnyx_campaign_csp.failure_reasons
  • telnyx_campaign_csp.status

Assign a messaging profile to a campaign

Messaging profile assignment is the practical handoff from registration to send-ready messaging infrastructure.

client.messaging_10dlc.phone_number_assignment_by_profile.assign()POST /10dlc/phoneNumberAssignmentByProfile

ParameterTypeRequiredDescription
messaging_profile_idstring (UUID)YesThe ID of the messaging profile that you want to link to the...
campaign_idstring (UUID)YesThe ID of the campaign you want to link to the specified mes...
tcr_campaign_idstring (UUID)NoThe TCR ID of the shared campaign you want to link to the sp...
response = client.messaging_10dlc.phone_number_assignment_by_profile.assign(
    messaging_profile_id="4001767e-ce0f-4cae-9d5f-0d5e636e7809",
    campaign_id="CXXX001",
)
print(response.messaging_profile_id)

Primary response fields:

  • response.messaging_profile_id
  • response.campaign_id
  • response.task_id
  • response.tcr_campaign_id

Webhook Verification

Telnyx signs webhooks with Ed25519. Each request includes telnyx-signature-ed25519 and telnyx-timestamp headers. Always verify signatures in production:

# In your webhook handler (e.g., Flask — use raw body, not parsed JSON):
@app.route("/webhooks", methods=["POST"])
def handle_webhook():
    payload = request.get_data(as_text=True)  # raw body as string
    headers = dict(request.headers)
    try:
        event = client.webhooks.unwrap(payload, headers=headers)
    except Exception as e:
        print(f"Webhook verification failed: {e}")
        return "Invalid signature", 400
    # Signature valid — event is the parsed webhook payload
    print(f"Received event: {event.data.event_type}")
    return "OK", 200

Webhooks

These webhook payload fields are inline because they are part of the primary integration path.

Campaign Status Update

FieldTypeDescription
brandIdstringBrand ID associated with the campaign.
campaignIdstringThe ID of the campaign.
createDatestringUnix timestamp when campaign was created.
cspIdstringAlphanumeric identifier of the CSP associated with this campaign.
isTMobileRegisteredbooleanIndicates whether the campaign is registered with T-Mobile.
typeenum: TELNYX_EVENT, REGISTRATION, MNO_REVIEW, TELNYX_REVIEW, NUMBER_POOL_PROVISIONED, NUMBER_POOL_DEPROVISIONED, TCR_EVENT, VERIFIED
descriptionstringDescription of the event.
statusenum: ACCEPTED, REJECTED, DORMANT, success, failedThe status of the campaign.

If you need webhook fields that are not listed inline here, read the webhook payload reference before writing the handler.


Important Supporting Operations

Use these when the core tasks above are close to your flow, but you need a common variation or follow-up step.

Get Brand

Inspect the current state of an existing brand registration.

client.messaging_10dlc.brand.retrieve()GET /10dlc/brand/{brandId}

ParameterTypeRequiredDescription
brand_idstring (UUID)Yes
brand = client.messaging_10dlc.brand.retrieve(
    "brandId",
)
print(brand)

Primary response fields:

  • brand.status
  • brand.state
  • brand.alt_business_id
  • brand.alt_business_id_type
  • brand.assigned_campaigns_count
  • brand.brand_id

Qualify By Usecase

Fetch the current state before updating, deleting, or making control-flow decisions.

client.messaging_10dlc.campaign_builder.brand.qualify_by_usecase()GET /10dlc/campaignBuilder/brand/{brandId}/usecase/{usecase}

ParameterTypeRequiredDescription
usecasestringYes
brand_idstring (UUID)Yes
response = client.messaging_10dlc.campaign_builder.brand.qualify_by_usecase(
    usecase="CUSTOMER_CARE",
    brand_id="brandId",
)
print(response.annual_fee)

Primary response fields:

  • response.annual_fee
  • response.max_sub_usecases
  • response.min_sub_usecases
  • response.mno_metadata
  • response.monthly_fee
  • response.quarterly_fee

Create New Phone Number Campaign

Create or provision an additional resource when the core tasks do not cover this flow.

client.messaging_10dlc.phone_number_campaigns.create()POST /10dlc/phone_number_campaigns

ParameterTypeRequiredDescription
phone_numberstring (E.164)YesThe phone number you want to link to a specified campaign.
campaign_idstring (UUID)YesThe ID of the campaign you want to link to the specified pho...
phone_number_campaign = client.messaging_10dlc.phone_number_campaigns.create(
    campaign_id="4b300178-131c-d902-d54e-72d90ba1620j",
    phone_number="+18005550199",
)
print(phone_number_campaign.campaign_id)

Primary response fields:

  • phone_number_campaign.assignment_status
  • phone_number_campaign.brand_id
  • phone_number_campaign.campaign_id
  • phone_number_campaign.created_at
  • phone_number_campaign.failure_reasons
  • phone_number_campaign.phone_number

Get campaign

Inspect the current state of an existing campaign registration.

client.messaging_10dlc.campaign.retrieve()GET /10dlc/campaign/{campaignId}

ParameterTypeRequiredDescription
campaign_idstring (UUID)Yes
telnyx_campaign_csp = client.messaging_10dlc.campaign.retrieve(
    "campaignId",
)
print(telnyx_campaign_csp.brand_id)

Primary response fields:

  • telnyx_campaign_csp.status
  • telnyx_campaign_csp.age_gated
  • telnyx_campaign_csp.auto_renewal
  • telnyx_campaign_csp.billed_date
  • telnyx_campaign_csp.brand_display_name
  • telnyx_campaign_csp.brand_id

List Brands

Inspect available resources or choose an existing resource before mutating it.

client.messaging_10dlc.brand.list()GET /10dlc/brand

ParameterTypeRequiredDescription
sortenum (assignedCampaignsCount, -assignedCampaignsCount, brandId, -brandId, createdAt,...)NoSpecifies the sort order for results.
pageintegerNo
records_per_pageintegerNonumber of records per page.
...+6 optional params in references/api-details.md
page = client.messaging_10dlc.brand.list()
page = page.records[0]
print(page.identity_status)

Primary response fields:

  • page.page
  • page.records
  • page.total_records

Get Brand Feedback By Id

Fetch the current state before updating, deleting, or making control-flow decisions.

client.messaging_10dlc.brand.get_feedback()GET /10dlc/brand/feedback/{brandId}

ParameterTypeRequiredDescription
brand_idstring (UUID)Yes
response = client.messaging_10dlc.brand.get_feedback(
    "brandId",
)
print(response.brand_id)

Primary response fields:

  • response.brand_id
  • response.category

Additional Operations

Use 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.

OperationSDK methodEndpointUse whenRequired params
Get Brand SMS OTP Statusclient.messaging_10dlc.brand.get_sms_otp_by_reference()GET /10dlc/brand/smsOtp/{referenceId}Fetch the current state before updating, deleting, or making control-flow decisions.reference_id
Update Brandclient.messaging_10dlc.brand.update()PUT /10dlc/brand/{brandId}Inspect the current state of an existing brand registration.entity_type, display_name, country, email, +2 more
Delete Brandclient.messaging_10dlc.brand.delete()DELETE /10dlc/brand/{brandId}Inspect the current state of an existing brand registration.brand_id
Resend brand 2FA emailclient.messaging_10dlc.brand.resend_2fa_email()POST /10dlc/brand/{brandId}/2faEmailCreate or provision an additional resource when the core tasks do not cover this flow.brand_id
List External Vettingsclient.messaging_10dlc.brand.external_vetting.list()GET /10dlc/brand/{brandId}/externalVettingFetch the current state before updating, deleting, or making control-flow decisions.brand_id
Order Brand External Vettingclient.messaging_10dlc.brand.external_vetting.order()POST /10dlc/brand/{brandId}/externalVettingCreate or provision an additional resource when the core tasks do not cover this flow.evp_id, vetting_class, brand_id
Import External Vetting Recordclient.messaging_10dlc.brand.external_vetting.imports()PUT /10dlc/brand/{brandId}/externalVettingModify an existing resource without recreating it.evp_id, vetting_id, brand_id
Revet Brandclient.messaging_10dlc.brand.revet()PUT /10dlc/brand/{brandId}/revetModify an existing resource without recreating it.brand_id
Get Brand SMS OTP Status by Brand IDclient.messaging_10dlc.brand.retrieve_sms_otp_status()GET /10dlc/brand/{brandId}/smsOtpFetch the current state before updating, deleting, or making control-flow decisions.brand_id
Trigger Brand SMS OTPclient.messaging_10dlc.brand.trigger_sms_otp()POST /10dlc/brand/{brandId}/smsOtpCreate or provision an additional resource when the core tasks do not cover this flow.pin_sms, success_sms, brand_id
Verify Brand SMS OTPclient.messaging_10dlc.brand.verify_sms_otp()PUT /10dlc/brand/{brandId}/smsOtpModify an existing resource without recreating it.otp_pin, brand_id
List Campaignsclient.messaging_10dlc.campaign.list()GET /10dlc/campaignInspect available resources or choose an existing resource before mutating it.None
Accept Shared Campaignclient.messaging_10dlc.campaign.accept_sharing()POST /10dlc/campaign/acceptSharing/{campaignId}Create or provision an additional resource when the core tasks do not cover this flow.campaign_id
Get Campaign Costclient.messaging_10dlc.campaign.usecase.get_cost()GET /10dlc/campaign/usecase/costInspect available resources or choose an existing resource before mutating it.None
Update campaignclient.messaging_10dlc.campaign.update()PUT /10dlc/campaign/{campaignId}Inspect the current state of an existing campaign registration.campaign_id
Deactivate campaignclient.messaging_10dlc.campaign.deactivate()DELETE /10dlc/campaign/{campaignId}Inspect the current state of an existing campaign registration.campaign_id
Submit campaign appeal for manual reviewclient.messaging_10dlc.campaign.submit_appeal()POST /10dlc/campaign/{campaignId}/appealCreate or provision an additional resource when the core tasks do not cover this flow.appeal_reason, campaign_id
Get Campaign Mno Metadataclient.messaging_10dlc.campaign.get_mno_metadata()GET /10dlc/campaign/{campaignId}/mnoMetadataFetch the current state before updating, deleting, or making control-flow decisions.campaign_id
Get campaign operation statusclient.messaging_10dlc.campaign.get_operation_status()GET /10dlc/campaign/{campaignId}/operationStatusFetch the current state before updating, deleting, or making control-flow decisions.campaign_id
Get OSR campaign attributesclient.messaging_10dlc.campaign.osr.get_attributes()GET /10dlc/campaign/{campaignId}/osr/attributesFetch the current state before updating, deleting, or making control-flow decisions.campaign_id
Get Sharing Statusclient.messaging_10dlc.campaign.get_sharing_status()GET /10dlc/campaign/{campaignId}/sharingFetch the current state before updating, deleting, or making control-flow decisions.campaign_id
List shared partner campaignsclient.messaging_10dlc.partner_campaigns.list_shared_by_me()GET /10dlc/partnerCampaign/sharedByMeInspect available resources or choose an existing resource before mutating it.None
Get Sharing Statusclient.messaging_10dlc.partner_campaigns.retrieve_sharing_status()GET /10dlc/partnerCampaign/{campaignId}/sharingFetch the current state before updating, deleting, or making control-flow decisions.campaign_id
List Shared Campaignsclient.messaging_10dlc.partner_campaigns.list()GET /10dlc/partner_campaignsInspect available resources or choose an existing resource before mutating it.None
Get Single Shared Campaignclient.messaging_10dlc.partner_campaigns.retrieve()GET /10dlc/partner_campaigns/{campaignId}Fetch the current state before updating, deleting, or making control-flow decisions.campaign_id
Update Single Shared Campaignclient.messaging_10dlc.partner_campaigns.update()PATCH /10dlc/partner_campaigns/{campaignId}Modify an existing resource without recreating it.campaign_id
Get Assignment Task Statusclient.messaging_10dlc.phone_number_assignment_by_profile.retrieve_status()GET /10dlc/phoneNumberAssignmentByProfile/{taskId}Fetch the current state before updating, deleting, or making control-flow decisions.task_id
Get Phone Number Statusclient.messaging_10dlc.phone_number_assignment_by_profile.list_phone_number_status()GET /10dlc/phoneNumberAssignmentByProfile/{taskId}/phoneNumbersFetch the current state before updating, deleting, or making control-flow decisions.task_id
List phone number campaignsclient.messaging_10dlc.phone_number_campaigns.list()GET /10dlc/phone_number_campaignsInspect available resources or choose an existing resource before mutating it.None
Get Single Phone Number Campaignclient.messaging_10dlc.phone_number_campaigns.retrieve()GET /10dlc/phone_number_campaigns/{phoneNumber}Fetch the current state before updating, deleting, or making control-flow decisions.phone_number
Create New Phone Number Campaignclient.messaging_10dlc.phone_number_campaigns.update()PUT /10dlc/phone_number_campaigns/{phoneNumber}Modify an existing resource without recreating it.phone_number, campaign_id, phone_number
Delete Phone Number Campaignclient.messaging_10dlc.phone_number_campaigns.delete()DELETE /10dlc/phone_number_campaigns/{phoneNumber}Remove, detach, or clean up an existing resource.phone_number

For exhaustive optional parameters, full response schemas, and complete webhook payloads, see references/api-details.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.76%
按下载量换算80

Claude

28.74%
按下载量换算66

Cursor

21.33%
按下载量换算49

Gemini CLI

9.32%
按下载量换算21

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills