{"id":"d5c847aa-90ca-4402-957c-134d8c689d1c","shortId":"7dkjFS","kind":"skill","title":"telnyx-account-management-java","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Account Management - Java\n\n## Installation\n\n```text\n<!-- Maven -->\n<dependency>\n    <groupId>com.telnyx.sdk</groupId>\n    <artifactId>telnyx</artifactId>\n    <version>6.36.0</version>\n</dependency>\n\n// Gradle\nimplementation(\"com.telnyx.sdk:telnyx:6.36.0\")\n```\n\n## Setup\n\n```java\nimport com.telnyx.sdk.client.TelnyxClient;\nimport com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;\n\nTelnyxClient client = TelnyxOkHttpClient.fromEnv();\n```\n\nAll examples below assume `client` is already initialized as shown above.\n\n## Error Handling\n\nAll API calls can fail with network errors, rate limits (429), validation errors (422),\nor authentication errors (401). Always handle errors in production code:\n\n```java\nimport com.telnyx.sdk.errors.TelnyxServiceException;\n\ntry {\n    var result = client.messages().send(params);\n} catch (TelnyxServiceException e) {\n    System.err.println(\"API error \" + e.statusCode() + \": \" + e.getMessage());\n    if (e.statusCode() == 422) {\n        System.err.println(\"Validation error — check required fields and formats\");\n    } else if (e.statusCode() == 429) {\n        // Rate limited — wait and retry with exponential backoff\n        Thread.sleep(1000);\n    }\n}\n```\n\nCommon error codes: `401` invalid API key, `403` insufficient permissions,\n`404` resource not found, `422` validation error (check field formats),\n`429` rate limited (retry with exponential backoff).\n\n## Important Notes\n\n- **Pagination:** List methods return a page. Use `.autoPager()` for automatic iteration: `for (var item : page.autoPager()) { ... }`. For manual control, use `.hasNextPage()` and `.nextPage()`.\n\n## Lists accounts managed by the current user.\n\nLists the accounts managed by the current user. Users need to be explictly approved by Telnyx in order to become manager accounts.\n\n`GET /managed_accounts`\n\n```java\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountListPage;\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountListParams;\n\nManagedAccountListPage page = client.managedAccounts().list();\n```\n\nReturns: `api_user` (string), `created_at` (string), `email` (email), `id` (uuid), `managed_account_allow_custom_pricing` (boolean), `manager_account_id` (string), `organization_name` (string), `record_type` (enum: managed_account), `rollup_billing` (boolean), `updated_at` (string)\n\n## Create a new managed account.\n\nCreate a new managed account owned by the authenticated user. You need to be explictly approved by Telnyx in order to become a manager account.\n\n`POST /managed_accounts` — Required: `business_name`\n\nOptional: `email` (string), `managed_account_allow_custom_pricing` (boolean), `password` (string), `rollup_billing` (boolean)\n\n```java\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountCreateParams;\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountCreateResponse;\n\nManagedAccountCreateParams params = ManagedAccountCreateParams.builder()\n    .businessName(\"Larry's Cat Food Inc\")\n    .build();\nManagedAccountCreateResponse managedAccount = client.managedAccounts().create(params);\n```\n\nReturns: `api_key` (string), `api_token` (string), `api_user` (string), `balance` (object), `created_at` (string), `email` (email), `id` (uuid), `managed_account_allow_custom_pricing` (boolean), `manager_account_id` (string), `organization_name` (string), `record_type` (enum: managed_account), `rollup_billing` (boolean), `updated_at` (string)\n\n## Display information about allocatable global outbound channels for the current user.\n\nDisplay information about allocatable global outbound channels for the current user. Only usable by account managers.\n\n`GET /managed_accounts/allocatable_global_outbound_channels`\n\n```java\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountGetAllocatableGlobalOutboundChannelsParams;\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountGetAllocatableGlobalOutboundChannelsResponse;\n\nManagedAccountGetAllocatableGlobalOutboundChannelsResponse response = client.managedAccounts().getAllocatableGlobalOutboundChannels();\n```\n\nReturns: `allocatable_global_outbound_channels` (integer), `managed_account_allow_custom_pricing` (boolean), `record_type` (string), `total_global_channels_allocated` (integer)\n\n## Retrieve a managed account\n\nRetrieves the details of a single managed account.\n\n`GET /managed_accounts/{id}`\n\n```java\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountRetrieveParams;\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountRetrieveResponse;\n\nManagedAccountRetrieveResponse managedAccount = client.managedAccounts().retrieve(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `api_key` (string), `api_token` (string), `api_user` (string), `balance` (object), `created_at` (string), `email` (email), `id` (uuid), `managed_account_allow_custom_pricing` (boolean), `manager_account_id` (string), `organization_name` (string), `record_type` (enum: managed_account), `rollup_billing` (boolean), `updated_at` (string)\n\n## Update a managed account\n\nUpdate a single managed account.\n\n`PATCH /managed_accounts/{id}`\n\nOptional: `managed_account_allow_custom_pricing` (boolean)\n\n```java\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountUpdateParams;\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountUpdateResponse;\n\nManagedAccountUpdateResponse managedAccount = client.managedAccounts().update(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `api_key` (string), `api_token` (string), `api_user` (string), `balance` (object), `created_at` (string), `email` (email), `id` (uuid), `managed_account_allow_custom_pricing` (boolean), `manager_account_id` (string), `organization_name` (string), `record_type` (enum: managed_account), `rollup_billing` (boolean), `updated_at` (string)\n\n## Disables a managed account\n\nDisables a managed account, forbidding it to use Telnyx services, including sending or receiving phone calls and SMS messages. Ongoing phone calls will not be affected. The managed account and its sub-users will no longer be able to log in via the mission control portal.\n\n`POST /managed_accounts/{id}/actions/disable`\n\n```java\nimport com.telnyx.sdk.models.managedaccounts.actions.ActionDisableParams;\nimport com.telnyx.sdk.models.managedaccounts.actions.ActionDisableResponse;\n\nActionDisableResponse response = client.managedAccounts().actions().disable(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `api_key` (string), `api_token` (string), `api_user` (string), `balance` (object), `created_at` (string), `email` (email), `id` (uuid), `managed_account_allow_custom_pricing` (boolean), `manager_account_id` (string), `organization_name` (string), `record_type` (enum: managed_account), `rollup_billing` (boolean), `updated_at` (string)\n\n## Enables a managed account\n\nEnables a managed account and its sub-users to use Telnyx services.\n\n`POST /managed_accounts/{id}/actions/enable`\n\nOptional: `reenable_all_connections` (boolean)\n\n```java\nimport com.telnyx.sdk.models.managedaccounts.actions.ActionEnableParams;\nimport com.telnyx.sdk.models.managedaccounts.actions.ActionEnableResponse;\n\nActionEnableResponse response = client.managedAccounts().actions().enable(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `api_key` (string), `api_token` (string), `api_user` (string), `balance` (object), `created_at` (string), `email` (email), `id` (uuid), `managed_account_allow_custom_pricing` (boolean), `manager_account_id` (string), `organization_name` (string), `record_type` (enum: managed_account), `rollup_billing` (boolean), `updated_at` (string)\n\n## Update the amount of allocatable global outbound channels allocated to a specific managed account.\n\n`PATCH /managed_accounts/{id}/update_global_channel_limit`\n\nOptional: `channel_limit` (integer)\n\n```java\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountUpdateGlobalChannelLimitParams;\nimport com.telnyx.sdk.models.managedaccounts.ManagedAccountUpdateGlobalChannelLimitResponse;\n\nManagedAccountUpdateGlobalChannelLimitResponse response = client.managedAccounts().updateGlobalChannelLimit(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `channel_limit` (integer), `email` (string), `id` (string), `manager_account_id` (string), `record_type` (string)\n\n## List organization users\n\nReturns a list of the users in your organization.\n\n`GET /organizations/users`\n\n```java\nimport com.telnyx.sdk.models.organizations.users.UserListPage;\nimport com.telnyx.sdk.models.organizations.users.UserListParams;\n\nUserListPage page = client.organizations().users().list();\n```\n\nReturns: `created_at` (string), `email` (email), `groups` (array[object]), `id` (string), `last_sign_in_at` (string | null), `organization_user_bypasses_sso` (boolean), `record_type` (string), `user_status` (enum: enabled, disabled, blocked)\n\n## Get organization users groups report\n\nReturns a report of all users in your organization with their group memberships. This endpoint returns all users without pagination and always includes group information. The report can be retrieved in JSON or CSV format by sending specific content-type headers.\n\n`GET /organizations/users/users_groups_report`\n\n```java\nimport com.telnyx.sdk.models.organizations.users.UserGetGroupsReportParams;\nimport com.telnyx.sdk.models.organizations.users.UserGetGroupsReportResponse;\n\nUserGetGroupsReportResponse response = client.organizations().users().getGroupsReport();\n```\n\nReturns: `created_at` (string), `email` (email), `groups` (array[object]), `id` (string), `last_sign_in_at` (string | null), `organization_user_bypasses_sso` (boolean), `record_type` (string), `user_status` (enum: enabled, disabled, blocked)\n\n## Get organization user\n\nReturns a user in your organization.\n\n`GET /organizations/users/{id}`\n\n```java\nimport com.telnyx.sdk.models.organizations.users.UserRetrieveParams;\nimport com.telnyx.sdk.models.organizations.users.UserRetrieveResponse;\n\nUserRetrieveResponse user = client.organizations().users().retrieve(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `created_at` (string), `email` (email), `groups` (array[object]), `id` (string), `last_sign_in_at` (string | null), `organization_user_bypasses_sso` (boolean), `record_type` (string), `user_status` (enum: enabled, disabled, blocked)\n\n## Delete organization user\n\nDeletes a user in your organization.\n\n`POST /organizations/users/{id}/actions/remove`\n\n```java\nimport com.telnyx.sdk.models.organizations.users.actions.ActionRemoveParams;\nimport com.telnyx.sdk.models.organizations.users.actions.ActionRemoveResponse;\n\nActionRemoveResponse action = client.organizations().users().actions().remove(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `created_at` (string), `email` (email), `groups` (array[object]), `id` (string), `last_sign_in_at` (string | null), `organization_user_bypasses_sso` (boolean), `record_type` (string), `user_status` (enum: enabled, disabled, blocked)","tags":["telnyx","account","management","java","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm"],"capabilities":["skill","source-team-telnyx","skill-telnyx-account-management-java","topic-agent-skills","topic-ai-coding-agent","topic-claude-code","topic-cpaas","topic-cursor","topic-iot","topic-llm","topic-sdk","topic-sip","topic-sms","topic-speech-to-text","topic-telephony"],"categories":["ai"],"synonyms":[],"warnings":[],"endpointUrl":"https://skills.sh/team-telnyx/ai/telnyx-account-management-java","protocol":"skill","transport":"skills-sh","auth":{"type":"none","details":{"cli":"npx skills add team-telnyx/ai","source_repo":"https://github.com/team-telnyx/ai","install_from":"skills.sh"}},"qualityScore":"0.533","qualityRationale":"deterministic score 0.53 from registry signals: · indexed on github topic:agent-skills · 167 github stars · SKILL.md body (10,923 chars)","verified":false,"liveness":"unknown","lastLivenessCheck":null,"agentReviews":{"count":0,"score_avg":null,"cost_usd_avg":null,"success_rate":null,"latency_p50_ms":null,"narrative_summary":null,"summary_updated_at":null},"enrichmentModel":"deterministic:skill-github:v1","enrichmentVersion":1,"enrichedAt":"2026-04-22T12:54:41.018Z","embedding":null,"createdAt":"2026-04-18T22:05:58.192Z","updatedAt":"2026-04-22T12:54:41.018Z","lastSeenAt":"2026-04-22T12:54:41.018Z","tsv":"'/actions/disable':608 '/actions/enable':688 '/actions/remove':1021 '/managed_accounts':189,265,417,487,606,686,768 '/managed_accounts/allocatable_global_outbound_channels':374 '/organizations/users':818,960,1019 '/organizations/users/users_groups_report':908 '/update_global_channel_limit':770 '1000':107 '401':59,111 '403':115 '404':118 '41d4':431,508,622,707,787,975,1036 '422':55,85,122 '429':52,97,128 '446655440000':433,510,624,709,789,977,1038 '550e8400':428,505,619,704,784,972,1033 '6.36.0':14,19 'a716':432,509,623,708,788,976,1037 'abl':596 'account':3,7,160,168,187,211,217,227,238,243,263,273,323,329,339,371,391,407,415,454,460,470,480,485,491,531,537,547,557,561,586,645,651,661,671,675,730,736,746,766,799 'action':617,702,1028,1031 'actiondisablerespons':614 'actionenablerespons':699 'actionremoverespons':1027 'affect':583 'alloc':402,761 'allocat':349,360,385,757 'allow':212,274,324,392,455,492,532,646,731 'alreadi':35 'alway':60,886 'amount':755 'api':43,79,113,200,304,307,310,435,438,441,512,515,518,626,629,632,711,714,717 'approv':179,254 'array':836,926,985,1046 'assum':32 'authent':57,247 'automat':146 'autopag':144 'backoff':105,134 'balanc':313,444,521,635,720 'becom':185,260 'bill':229,281,341,472,549,663,748 'block':859,949,1008,1069 'boolean':215,230,277,282,327,342,395,458,473,495,535,550,649,664,693,734,749,850,940,999,1060 'build':297 'busi':267 'businessnam':291 'bypass':848,938,997,1058 'call':44,573,579 'cat':294 'catch':75 'channel':352,363,388,401,760,772,791 'check':89,125 'client':27,33 'client.managedaccounts':197,300,382,426,503,616,701,782 'client.messages':72 'client.organizations':826,916,969,1029 'code':65,110 'com.telnyx.sdk':12,17 'com.telnyx.sdk.client.okhttp.telnyxokhttpclient':25 'com.telnyx.sdk.client.telnyxclient':23 'com.telnyx.sdk.errors.telnyxserviceexception':68 'com.telnyx.sdk.models.managedaccounts.actions.actiondisableparams':611 'com.telnyx.sdk.models.managedaccounts.actions.actiondisableresponse':613 'com.telnyx.sdk.models.managedaccounts.actions.actionenableparams':696 'com.telnyx.sdk.models.managedaccounts.actions.actionenableresponse':698 'com.telnyx.sdk.models.managedaccounts.managedaccountcreateparams':285 'com.telnyx.sdk.models.managedaccounts.managedaccountcreateresponse':287 'com.telnyx.sdk.models.managedaccounts.managedaccountgetallocatableglobaloutboundchannelsparams':377 'com.telnyx.sdk.models.managedaccounts.managedaccountgetallocatableglobaloutboundchannelsresponse':379 'com.telnyx.sdk.models.managedaccounts.managedaccountlistpage':192 'com.telnyx.sdk.models.managedaccounts.managedaccountlistparams':194 'com.telnyx.sdk.models.managedaccounts.managedaccountretrieveparams':421 'com.telnyx.sdk.models.managedaccounts.managedaccountretrieveresponse':423 'com.telnyx.sdk.models.managedaccounts.managedaccountupdateglobalchannellimitparams':777 'com.telnyx.sdk.models.managedaccounts.managedaccountupdateglobalchannellimitresponse':779 'com.telnyx.sdk.models.managedaccounts.managedaccountupdateparams':498 'com.telnyx.sdk.models.managedaccounts.managedaccountupdateresponse':500 'com.telnyx.sdk.models.organizations.users.actions.actionremoveparams':1024 'com.telnyx.sdk.models.organizations.users.actions.actionremoveresponse':1026 'com.telnyx.sdk.models.organizations.users.usergetgroupsreportparams':911 'com.telnyx.sdk.models.organizations.users.usergetgroupsreportresponse':913 'com.telnyx.sdk.models.organizations.users.userlistpage':821 'com.telnyx.sdk.models.organizations.users.userlistparams':823 'com.telnyx.sdk.models.organizations.users.userretrieveparams':964 'com.telnyx.sdk.models.organizations.users.userretrieveresponse':966 'common':108 'connect':692 'content':904 'content-typ':903 'control':154,603 'creat':203,234,239,301,315,446,523,637,722,830,920,979,1040 'csv':898 'current':164,172,355,366 'custom':213,275,325,393,456,493,533,647,732 'delet':1009,1012 'detail':410 'disabl':554,558,618,858,948,1007,1068 'display':346,357 'e':77 'e.getmessage':82 'e.statuscode':81,84,96 'e29b':430,507,621,706,786,974,1035 'e29b-41d4-a716':429,506,620,705,785,973,1034 'els':94 'email':206,207,270,318,319,449,450,526,527,640,641,725,726,794,833,834,923,924,982,983,1043,1044 'enabl':668,672,703,857,947,1006,1067 'endpoint':879 'enum':225,337,468,545,659,744,856,946,1005,1066 'error':40,49,54,58,62,80,88,109,124 'exampl':30 'explict':178,253 'exponenti':104,133 'fail':46 'field':91,126 'food':295 'forbid':562 'format':93,127,899 'found':121 'get':188,373,416,817,860,907,950,959 'getallocatableglobaloutboundchannel':383 'getgroupsreport':918 'global':350,361,386,400,758 'gradl':15 'group':835,863,876,888,925,984,1045 'handl':41,61 'hasnextpag':156 'header':906 'id':208,218,320,330,418,451,461,488,528,538,607,642,652,687,727,737,769,796,800,838,928,961,987,1020,1048 'implement':16 'import':22,24,67,135,191,193,284,286,376,378,420,422,497,499,610,612,695,697,776,778,820,822,910,912,963,965,1023,1025 'inc':296 'includ':568,887 'inform':347,358,889 'initi':36 'instal':10 'insuffici':116 'integ':389,403,774,793 'invalid':112 'item':150 'iter':147 'java':5,9,21,66,190,283,375,419,496,609,694,775,819,909,962,1022 'json':896 'key':114,305,436,513,627,712 'larri':292 'last':840,930,989,1050 'limit':51,99,130,773,792 'list':138,159,166,198,805,810,828 'log':598 'longer':594 'manag':4,8,161,169,186,210,216,226,237,242,262,272,322,328,338,372,390,406,414,453,459,469,479,484,490,530,536,546,556,560,585,644,650,660,670,674,729,735,745,765,798 'managedaccount':299,425,502 'managedaccountcreateparam':288 'managedaccountcreateparams.builder':290 'managedaccountcreaterespons':298 'managedaccountgetallocatableglobaloutboundchannelsrespons':380 'managedaccountlistpag':195 'managedaccountretrieverespons':424 'managedaccountupdateglobalchannellimitrespons':780 'managedaccountupdaterespons':501 'manual':153 'membership':877 'messag':576 'method':139 'mission':602 'name':221,268,333,464,541,655,740 'need':175,250 'network':48 'new':236,241 'nextpag':158 'note':136 'null':845,935,994,1055 'object':314,445,522,636,721,837,927,986,1047 'ongo':577 'option':269,489,689,771 'order':183,258 'organ':220,332,463,540,654,739,806,816,846,861,873,936,951,958,995,1010,1017,1056 'outbound':351,362,387,759 'own':244 'page':142,196,825 'page.autopager':151 'pagin':137,884 'param':74,289,302 'password':278 'patch':486,767 'permiss':117 'phone':572,578 'portal':604 'post':264,605,685,1018 'price':214,276,326,394,457,494,534,648,733 'product':64 'rate':50,98,129 'receiv':571 'record':223,335,396,466,543,657,742,802,851,941,1000,1061 'reenabl':690 'remov':1032 'report':864,867,891 'requir':90,266 'resourc':119 'respons':381,615,700,781,915 'result':71 'retri':102,131 'retriev':404,408,427,894,971 'return':140,199,303,384,434,511,625,710,790,808,829,865,880,919,953,978,1039 'rollup':228,280,340,471,548,662,747 'send':73,569,901 'servic':567,684 'setup':20 'shown':38 'sign':841,931,990,1051 'singl':413,483 'skill' 'skill-telnyx-account-management-java' 'sms':575 'source-team-telnyx' 'specif':764,902 'sso':849,939,998,1059 'status':855,945,1004,1065 'string':202,205,219,222,233,271,279,306,309,312,317,331,334,345,398,437,440,443,448,462,465,476,514,517,520,525,539,542,553,628,631,634,639,653,656,667,713,716,719,724,738,741,752,795,797,801,804,832,839,844,853,922,929,934,943,981,988,993,1002,1042,1049,1054,1063 'sub':590,679 'sub-us':589,678 'system.err.println':78,86 'telnyx':2,6,13,18,181,256,566,683 'telnyx-account-management-java':1 'telnyxcli':26 'telnyxokhttpclient.fromenv':28 'telnyxserviceexcept':76 'text':11 'thread.sleep':106 'token':308,439,516,630,715 'topic-agent-skills' 'topic-ai-coding-agent' 'topic-claude-code' 'topic-cpaas' 'topic-cursor' 'topic-iot' 'topic-llm' 'topic-sdk' 'topic-sip' 'topic-sms' 'topic-speech-to-text' 'topic-telephony' 'total':399 'tri':69 'type':224,336,397,467,544,658,743,803,852,905,942,1001,1062 'updat':231,343,474,477,481,504,551,665,750,753 'updateglobalchannellimit':783 'usabl':369 'use':143,155,565,682 'user':165,173,174,201,248,311,356,367,442,519,591,633,680,718,807,813,827,847,854,862,870,882,917,937,944,952,955,968,970,996,1003,1011,1014,1030,1057,1064 'usergetgroupsreportrespons':914 'userlistpag':824 'userretrieverespons':967 'uuid':209,321,452,529,643,728 'valid':53,87,123 'var':70,149 'via':600 'wait':100 'without':883","prices":[{"id":"eac4ae54-4c2e-4c41-83f0-cbc4e6f88549","listingId":"d5c847aa-90ca-4402-957c-134d8c689d1c","amountUsd":"0","unit":"free","nativeCurrency":null,"nativeAmount":null,"chain":null,"payTo":null,"paymentMethod":"skill-free","isPrimary":true,"details":{"org":"team-telnyx","category":"ai","install_from":"skills.sh"},"createdAt":"2026-04-18T22:05:58.192Z"}],"sources":[{"listingId":"d5c847aa-90ca-4402-957c-134d8c689d1c","source":"github","sourceId":"team-telnyx/ai/telnyx-account-management-java","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-account-management-java","isPrimary":false,"firstSeenAt":"2026-04-18T22:05:58.192Z","lastSeenAt":"2026-04-22T12:54:41.018Z"}],"details":{"listingId":"d5c847aa-90ca-4402-957c-134d8c689d1c","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-account-management-java","github":{"repo":"team-telnyx/ai","stars":167,"topics":["agent-skills","ai","ai-coding-agent","claude-code","cpaas","cursor","iot","llm","sdk","sip","sms","speech-to-text","telephony","telnyx","tts","twilio-migration","voice-agents","voice-ai","webrtc","windsurf"],"license":"mit","html_url":"https://github.com/team-telnyx/ai","pushed_at":"2026-04-21T22:09:49Z","description":"Official one-stop shop for AI Agents and developers building with Telnyx.","skill_md_sha":"9e48f9a7462ef4ac3ef5302464812f9e62e999b2","skill_md_path":"skills/telnyx-account-management-java/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-account-management-java"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-account-management-java","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-account-management-java"},"updatedAt":"2026-04-22T12:54:41.018Z"}}