{"id":"ca8973a7-b7a7-4b67-998b-fe9746dd706b","shortId":"uVUeWb","kind":"skill","title":"telnyx-account-access-java","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Account Access - 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## List all Access IP Addresses\n\n`GET /access_ip_address`\n\n```java\nimport com.telnyx.sdk.models.accessipaddress.AccessIpAddressListPage;\nimport com.telnyx.sdk.models.accessipaddress.AccessIpAddressListParams;\n\nAccessIpAddressListPage page = client.accessIpAddress().list();\n```\n\nReturns: `created_at` (date-time), `description` (string), `id` (string), `ip_address` (string), `source` (string), `status` (enum: pending, added), `updated_at` (date-time), `user_id` (string)\n\n## Create new Access IP Address\n\n`POST /access_ip_address` — Required: `ip_address`\n\nOptional: `description` (string)\n\n```java\nimport com.telnyx.sdk.models.accessipaddress.AccessIpAddressCreateParams;\nimport com.telnyx.sdk.models.accessipaddress.AccessIpAddressResponse;\n\nAccessIpAddressCreateParams params = AccessIpAddressCreateParams.builder()\n    .ipAddress(\"203.0.113.10\")\n    .build();\nAccessIpAddressResponse accessIpAddressResponse = client.accessIpAddress().create(params);\n```\n\nReturns: `created_at` (date-time), `description` (string), `id` (string), `ip_address` (string), `source` (string), `status` (enum: pending, added), `updated_at` (date-time), `user_id` (string)\n\n## Retrieve an access IP address\n\n`GET /access_ip_address/{access_ip_address_id}`\n\n```java\nimport com.telnyx.sdk.models.accessipaddress.AccessIpAddressResponse;\nimport com.telnyx.sdk.models.accessipaddress.AccessIpAddressRetrieveParams;\n\nAccessIpAddressResponse accessIpAddressResponse = client.accessIpAddress().retrieve(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `created_at` (date-time), `description` (string), `id` (string), `ip_address` (string), `source` (string), `status` (enum: pending, added), `updated_at` (date-time), `user_id` (string)\n\n## Delete access IP address\n\n`DELETE /access_ip_address/{access_ip_address_id}`\n\n```java\nimport com.telnyx.sdk.models.accessipaddress.AccessIpAddressDeleteParams;\nimport com.telnyx.sdk.models.accessipaddress.AccessIpAddressResponse;\n\nAccessIpAddressResponse accessIpAddressResponse = client.accessIpAddress().delete(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `created_at` (date-time), `description` (string), `id` (string), `ip_address` (string), `source` (string), `status` (enum: pending, added), `updated_at` (date-time), `user_id` (string)\n\n## List all addresses\n\nReturns a list of your addresses.\n\n`GET /addresses`\n\n```java\nimport com.telnyx.sdk.models.addresses.AddressListPage;\nimport com.telnyx.sdk.models.addresses.AddressListParams;\n\nAddressListPage page = client.addresses().list();\n```\n\nReturns: `address_book` (boolean), `administrative_area` (string), `borough` (string), `business_name` (string), `country_code` (string), `created_at` (string), `customer_reference` (string), `extended_address` (string), `first_name` (string), `id` (string), `last_name` (string), `locality` (string), `neighborhood` (string), `phone_number` (string), `postal_code` (string), `record_type` (string), `street_address` (string), `updated_at` (string), `validate_address` (boolean)\n\n## Creates an address\n\nCreates an address.\n\n`POST /addresses` — Required: `first_name`, `last_name`, `business_name`, `street_address`, `locality`, `country_code`\n\nOptional: `address_book` (boolean), `administrative_area` (string), `borough` (string), `customer_reference` (string), `extended_address` (string), `neighborhood` (string), `phone_number` (string), `postal_code` (string), `validate_address` (boolean)\n\n```java\nimport com.telnyx.sdk.models.addresses.AddressCreateParams;\nimport com.telnyx.sdk.models.addresses.AddressCreateResponse;\n\nAddressCreateParams params = AddressCreateParams.builder()\n    .businessName(\"Toy-O'Kon\")\n    .countryCode(\"US\")\n    .firstName(\"Alfred\")\n    .lastName(\"Foster\")\n    .locality(\"Austin\")\n    .streetAddress(\"600 Congress Avenue\")\n    .build();\nAddressCreateResponse address = client.addresses().create(params);\n```\n\nReturns: `address_book` (boolean), `administrative_area` (string), `borough` (string), `business_name` (string), `country_code` (string), `created_at` (string), `customer_reference` (string), `extended_address` (string), `first_name` (string), `id` (string), `last_name` (string), `locality` (string), `neighborhood` (string), `phone_number` (string), `postal_code` (string), `record_type` (string), `street_address` (string), `updated_at` (string), `validate_address` (boolean)\n\n## Validate an address\n\nValidates an address for emergency services.\n\n`POST /addresses/actions/validate` — Required: `country_code`, `street_address`, `postal_code`\n\nOptional: `administrative_area` (string), `extended_address` (string), `locality` (string)\n\n```java\nimport com.telnyx.sdk.models.addresses.actions.ActionValidateParams;\nimport com.telnyx.sdk.models.addresses.actions.ActionValidateResponse;\n\nActionValidateParams params = ActionValidateParams.builder()\n    .countryCode(\"US\")\n    .postalCode(\"78701\")\n    .streetAddress(\"600 Congress Avenue\")\n    .build();\nActionValidateResponse response = client.addresses().actions().validate(params);\n```\n\nReturns: `errors` (array[object]), `record_type` (string), `result` (enum: valid, invalid), `suggested` (object)\n\n## Retrieve an address\n\nRetrieves the details of an existing address.\n\n`GET /addresses/{id}`\n\n```java\nimport com.telnyx.sdk.models.addresses.AddressRetrieveParams;\nimport com.telnyx.sdk.models.addresses.AddressRetrieveResponse;\n\nAddressRetrieveResponse address = client.addresses().retrieve(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `address_book` (boolean), `administrative_area` (string), `borough` (string), `business_name` (string), `country_code` (string), `created_at` (string), `customer_reference` (string), `extended_address` (string), `first_name` (string), `id` (string), `last_name` (string), `locality` (string), `neighborhood` (string), `phone_number` (string), `postal_code` (string), `record_type` (string), `street_address` (string), `updated_at` (string), `validate_address` (boolean)\n\n## Deletes an address\n\nDeletes an existing address.\n\n`DELETE /addresses/{id}`\n\n```java\nimport com.telnyx.sdk.models.addresses.AddressDeleteParams;\nimport com.telnyx.sdk.models.addresses.AddressDeleteResponse;\n\nAddressDeleteResponse address = client.addresses().delete(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `address_book` (boolean), `administrative_area` (string), `borough` (string), `business_name` (string), `country_code` (string), `created_at` (string), `customer_reference` (string), `extended_address` (string), `first_name` (string), `id` (string), `last_name` (string), `locality` (string), `neighborhood` (string), `phone_number` (string), `postal_code` (string), `record_type` (string), `street_address` (string), `updated_at` (string), `validate_address` (boolean)\n\n## Accepts this address suggestion as a new emergency address for Operator Connect and finishes the uploads of the numbers associated with it to Microsoft.\n\n`POST /addresses/{id}/actions/accept_suggestions`\n\nOptional: `id` (string)\n\n```java\nimport com.telnyx.sdk.models.addresses.actions.ActionAcceptSuggestionsParams;\nimport com.telnyx.sdk.models.addresses.actions.ActionAcceptSuggestionsResponse;\n\nActionAcceptSuggestionsResponse response = client.addresses().actions().acceptSuggestions(\"182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e\");\n```\n\nReturns: `accepted` (boolean), `id` (uuid), `record_type` (enum: address_suggestion)\n\n## List all SSO authentication providers\n\nReturns a list of your SSO authentication providers.\n\n`GET /authentication_providers`\n\n```java\nimport com.telnyx.sdk.models.authenticationproviders.AuthenticationProviderListPage;\nimport com.telnyx.sdk.models.authenticationproviders.AuthenticationProviderListParams;\n\nAuthenticationProviderListPage page = client.authenticationProviders().list();\n```\n\nReturns: `activated_at` (date-time), `active` (boolean), `created_at` (date-time), `id` (uuid), `name` (string), `organization_id` (uuid), `record_type` (string), `settings` (object), `short_name` (string), `updated_at` (date-time)\n\n## Creates an authentication provider\n\nCreates an authentication provider.\n\n`POST /authentication_providers` — Required: `name`, `short_name`, `settings`\n\nOptional: `active` (boolean), `settings_url` (uri)\n\n```java\nimport com.telnyx.sdk.models.authenticationproviders.AuthenticationProviderCreateParams;\nimport com.telnyx.sdk.models.authenticationproviders.AuthenticationProviderCreateResponse;\nimport com.telnyx.sdk.models.authenticationproviders.Settings;\n\nAuthenticationProviderCreateParams params = AuthenticationProviderCreateParams.builder()\n    .name(\"Okta\")\n    .settings(Settings.builder()\n        .idpCertFingerprint(\"13:38:C7:BB:C9:FF:4A:70:38:3A:E3:D9:5C:CD:DB:2E:50:1E:80:A7\")\n        .idpEntityId(\"https://myorg.myidp.com/saml/metadata\")\n        .idpSsoTargetUrl(\"https://myorg.myidp.com/trust/saml2/http-post/sso\")\n        .build())\n    .shortName(\"myorg\")\n    .build();\nAuthenticationProviderCreateResponse authenticationProvider = client.authenticationProviders().create(params);\n```\n\nReturns: `activated_at` (date-time), `active` (boolean), `created_at` (date-time), `id` (uuid), `name` (string), `organization_id` (uuid), `record_type` (string), `settings` (object), `short_name` (string), `updated_at` (date-time)\n\n## Retrieve an authentication provider\n\nRetrieves the details of an existing authentication provider.\n\n`GET /authentication_providers/{id}`\n\n```java\nimport com.telnyx.sdk.models.authenticationproviders.AuthenticationProviderRetrieveParams;\nimport com.telnyx.sdk.models.authenticationproviders.AuthenticationProviderRetrieveResponse;\n\nAuthenticationProviderRetrieveResponse authenticationProvider = client.authenticationProviders().retrieve(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `activated_at` (date-time), `active` (boolean), `created_at` (date-time), `id` (uuid), `name` (string), `organization_id` (uuid), `record_type` (string), `settings` (object), `short_name` (string), `updated_at` (date-time)\n\n## Update an authentication provider\n\nUpdates settings of an existing authentication provider.\n\n`PATCH /authentication_providers/{id}`\n\nOptional: `active` (boolean), `name` (string), `settings` (object), `settings_url` (uri), `short_name` (string)\n\n```java\nimport com.telnyx.sdk.models.authenticationproviders.AuthenticationProviderUpdateParams;\nimport com.telnyx.sdk.models.authenticationproviders.AuthenticationProviderUpdateResponse;\n\nAuthenticationProviderUpdateResponse authenticationProvider = client.authenticationProviders().update(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `activated_at` (date-time), `active` (boolean), `created_at` (date-time), `id` (uuid), `name` (string), `organization_id` (uuid), `record_type` (string), `settings` (object), `short_name` (string), `updated_at` (date-time)\n\n## Deletes an authentication provider\n\nDeletes an existing authentication provider.\n\n`DELETE /authentication_providers/{id}`\n\n```java\nimport com.telnyx.sdk.models.authenticationproviders.AuthenticationProviderDeleteParams;\nimport com.telnyx.sdk.models.authenticationproviders.AuthenticationProviderDeleteResponse;\n\nAuthenticationProviderDeleteResponse authenticationProvider = client.authenticationProviders().delete(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\nReturns: `activated_at` (date-time), `active` (boolean), `created_at` (date-time), `id` (uuid), `name` (string), `organization_id` (uuid), `record_type` (string), `settings` (object), `short_name` (string), `updated_at` (date-time)\n\n## List all billing groups\n\n`GET /billing_groups`\n\n```java\nimport com.telnyx.sdk.models.billinggroups.BillingGroupListPage;\nimport com.telnyx.sdk.models.billinggroups.BillingGroupListParams;\n\nBillingGroupListPage page = client.billingGroups().list();\n```\n\nReturns: `created_at` (date-time), `deleted_at` (date-time), `id` (uuid), `name` (string), `organization_id` (uuid), `record_type` (enum: billing_group), `updated_at` (date-time)\n\n## Create a billing group\n\n`POST /billing_groups`\n\nOptional: `name` (string)\n\n```java\nimport com.telnyx.sdk.models.billinggroups.BillingGroupCreateParams;\nimport com.telnyx.sdk.models.billinggroups.BillingGroupCreateResponse;\n\nBillingGroupCreateResponse billingGroup = client.billingGroups().create();\n```\n\nReturns: `created_at` (date-time), `deleted_at` (date-time), `id` (uuid), `name` (string), `organization_id` (uuid), `record_type` (enum: billing_group), `updated_at` (date-time)\n\n## Get a billing group\n\n`GET /billing_groups/{id}`\n\n```java\nimport com.telnyx.sdk.models.billinggroups.BillingGroupRetrieveParams;\nimport com.telnyx.sdk.models.billinggroups.BillingGroupRetrieveResponse;\n\nBillingGroupRetrieveResponse billingGroup = client.billingGroups().retrieve(\"f5586561-8ff0-4291-a0ac-84fe544797bd\");\n```\n\nReturns: `created_at` (date-time), `deleted_at` (date-time), `id` (uuid), `name` (string), `organization_id` (uuid), `record_type` (enum: billing_group), `updated_at` (date-time)\n\n## Update a billing group\n\n`PATCH /billing_groups/{id}`\n\nOptional: `name` (string)\n\n```java\nimport com.telnyx.sdk.models.billinggroups.BillingGroupUpdateParams;\nimport com.telnyx.sdk.models.billinggroups.BillingGroupUpdateResponse;\n\nBillingGroupUpdateResponse billingGroup = client.billingGroups().update(\"f5586561-8ff0-4291-a0ac-84fe544797bd\");\n```\n\nReturns: `created_at` (date-time), `deleted_at` (date-time), `id` (uuid), `name` (string), `organization_id` (uuid), `record_type` (enum: billing_group), `updated_at` (date-time)\n\n## Delete a billing group\n\n`DELETE /billing_groups/{id}`\n\n```java\nimport com.telnyx.sdk.models.billinggroups.BillingGroupDeleteParams;\nimport com.telnyx.sdk.models.billinggroups.BillingGroupDeleteResponse;\n\nBillingGroupDeleteResponse billingGroup = client.billingGroups().delete(\"f5586561-8ff0-4291-a0ac-84fe544797bd\");\n```\n\nReturns: `created_at` (date-time), `deleted_at` (date-time), `id` (uuid), `name` (string), `organization_id` (uuid), `record_type` (enum: billing_group), `updated_at` (date-time)\n\n## List integration secrets\n\nRetrieve a list of all integration secrets configured by the user.\n\n`GET /integration_secrets`\n\n```java\nimport com.telnyx.sdk.models.integrationsecrets.IntegrationSecretListPage;\nimport com.telnyx.sdk.models.integrationsecrets.IntegrationSecretListParams;\n\nIntegrationSecretListPage page = client.integrationSecrets().list();\n```\n\nReturns: `created_at` (date-time), `id` (string), `identifier` (string), `record_type` (string), `updated_at` (date-time)\n\n## Create a secret\n\nCreate a new secret with an associated identifier that can be used to securely integrate with other services.\n\n`POST /integration_secrets` — Required: `identifier`, `type`\n\nOptional: `password` (string), `token` (string), `username` (string)\n\n```java\nimport com.telnyx.sdk.models.integrationsecrets.IntegrationSecretCreateParams;\nimport com.telnyx.sdk.models.integrationsecrets.IntegrationSecretCreateResponse;\n\nIntegrationSecretCreateParams params = IntegrationSecretCreateParams.builder()\n    .identifier(\"my_secret\")\n    .type(IntegrationSecretCreateParams.Type.BEARER)\n    .build();\nIntegrationSecretCreateResponse integrationSecret = client.integrationSecrets().create(params);\n```\n\nReturns: `created_at` (date-time), `id` (string), `identifier` (string), `record_type` (string), `updated_at` (date-time)\n\n## Delete an integration secret\n\nDelete an integration secret given its ID.\n\n`DELETE /integration_secrets/{id}`\n\n```java\nimport com.telnyx.sdk.models.integrationsecrets.IntegrationSecretDeleteParams;\n\nclient.integrationSecrets().delete(\"550e8400-e29b-41d4-a716-446655440000\");\n```\n\n## Create an Access Token.\n\nCreate an Access Token (JWT) for the credential.\n\n`POST /telephony_credentials/{id}/token`\n\n```java\nimport com.telnyx.sdk.models.telephonycredentials.TelephonyCredentialCreateTokenParams;\n\nString response = client.telephonyCredentials().createToken(\"550e8400-e29b-41d4-a716-446655440000\");\n```","tags":["telnyx","account","access","java","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm"],"capabilities":["skill","source-team-telnyx","skill-telnyx-account-access-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-access-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 (17,512 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:39.304Z","embedding":null,"createdAt":"2026-04-18T22:05:49.825Z","updatedAt":"2026-04-22T12:54:39.304Z","lastSeenAt":"2026-04-22T12:54:39.304Z","tsv":"'/access_ip_address':165,208,264,316 '/actions/accept_suggestions':819 '/addresses':373,444,642,721,817 '/addresses/actions/validate':578 '/authentication_providers':863,915,1025,1087,1160 '/billing_groups':1215,1258,1304,1355,1409 '/integration_secrets':1470,1520,1580 '/saml/metadata':965 '/telephony_credentials':1606 '/token':1608 '/trust/saml2/http-post/sso':969 '1000':107 '13':942 '182bd5e5':834 '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e':833 '1e':959 '203.0.113.10':224 '2e':957 '38':943,950 '3a':951 '401':59,111 '403':115 '404':118 '41d4':281,333,656,735,1039,1114,1174,1590,1619 '422':55,85,122 '429':52,97,128 '4291':1318,1372,1423 '446655440000':283,335,658,737,1041,1116,1176,1592,1621 '4a':948 '4fe4':836 '50':958 '550e8400':278,330,653,732,1036,1111,1171,1587,1616 '5c':954 '6.36.0':14,19 '600':505,608 '6e1a':835 '70':949 '78701':606 '80':960 '84fe544797bd':1321,1375,1426 '8ff0':1317,1371,1422 'a0ac':1320,1374,1425 'a0ac-84fe544797bd':1319,1373,1424 'a7':961 'a716':282,334,657,736,1040,1115,1175,1591,1620 'a799':837 'aa6d9a6ab26e':838 'accept':792,840 'acceptsuggest':832 'access':4,8,161,204,260,265,312,317,1595,1599 'accessipaddresscreateparam':220 'accessipaddresscreateparams.builder':222 'accessipaddresslistpag':171 'accessipaddressrespons':226,227,274,275,326,327 'account':3,7 'action':615,831 'actionacceptsuggestionsrespons':828 'actionvalidateparam':600 'actionvalidateparams.builder':602 'actionvalidaterespons':612 'activ':874,879,922,980,985,1043,1048,1090,1118,1123,1178,1183 'ad':193,249,302,354 'address':163,186,206,211,242,262,267,295,314,319,347,365,371,384,405,429,435,439,442,453,458,470,481,510,515,536,560,566,570,573,583,591,633,640,650,660,681,705,711,715,719,729,739,760,784,790,794,800,847 'addresscreateparam':488 'addresscreateparams.builder':490 'addresscreaterespons':509 'addressdeleterespons':728 'addresslistpag':379 'addressretrieverespons':649 'administr':387,461,518,587,663,742 'alfr':499 'alreadi':35 'alway':60 'api':43,79,113 'area':388,462,519,588,664,743 'array':620 'associ':811,1507 'assum':32 'austin':503 'authent':57,852,860,908,912,1014,1022,1077,1084,1152,1157 'authenticationprovid':975,1033,1108,1168 'authenticationprovidercreateparam':934 'authenticationprovidercreateparams.builder':936 'authenticationprovidercreaterespons':974 'authenticationproviderdeleterespons':1167 'authenticationproviderlistpag':869 'authenticationproviderretrieverespons':1032 'authenticationproviderupdaterespons':1107 'automat':146 'autopag':144 'avenu':507,610 'backoff':105,134 'bb':945 'bill':1212,1246,1255,1292,1301,1343,1352,1397,1406,1448 'billinggroup':1268,1312,1366,1417 'billinggroupcreaterespons':1267 'billinggroupdeleterespons':1416 'billinggrouplistpag':1221 'billinggroupretrieverespons':1311 'billinggroupupdaterespons':1365 'book':385,459,516,661,740 'boolean':386,436,460,482,517,567,662,712,741,791,841,880,923,986,1049,1091,1124,1184 'borough':390,464,521,666,745 'build':225,508,611,970,973,1544 'busi':392,450,523,668,747 'businessnam':491 'c7':944 'c9':946 'call':44 'catch':75 'cd':955 'check':89,125 'client':27,33 'client.accessipaddress':173,228,276,328 'client.addresses':381,511,614,651,730,830 'client.authenticationproviders':871,976,1034,1109,1169 'client.billinggroups':1223,1269,1313,1367,1418 'client.integrationsecrets':1478,1547,1585 'client.messages':72 'client.telephonycredentials':1614 'code':65,110,396,423,456,478,527,554,581,585,672,699,751,778 '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.accessipaddress.accessipaddresscreateparams':217 'com.telnyx.sdk.models.accessipaddress.accessipaddressdeleteparams':323 'com.telnyx.sdk.models.accessipaddress.accessipaddresslistpage':168 'com.telnyx.sdk.models.accessipaddress.accessipaddresslistparams':170 'com.telnyx.sdk.models.accessipaddress.accessipaddressresponse':219,271,325 'com.telnyx.sdk.models.accessipaddress.accessipaddressretrieveparams':273 'com.telnyx.sdk.models.addresses.actions.actionacceptsuggestionsparams':825 'com.telnyx.sdk.models.addresses.actions.actionacceptsuggestionsresponse':827 'com.telnyx.sdk.models.addresses.actions.actionvalidateparams':597 'com.telnyx.sdk.models.addresses.actions.actionvalidateresponse':599 'com.telnyx.sdk.models.addresses.addresscreateparams':485 'com.telnyx.sdk.models.addresses.addresscreateresponse':487 'com.telnyx.sdk.models.addresses.addressdeleteparams':725 'com.telnyx.sdk.models.addresses.addressdeleteresponse':727 'com.telnyx.sdk.models.addresses.addresslistpage':376 'com.telnyx.sdk.models.addresses.addresslistparams':378 'com.telnyx.sdk.models.addresses.addressretrieveparams':646 'com.telnyx.sdk.models.addresses.addressretrieveresponse':648 'com.telnyx.sdk.models.authenticationproviders.authenticationprovidercreateparams':929 'com.telnyx.sdk.models.authenticationproviders.authenticationprovidercreateresponse':931 'com.telnyx.sdk.models.authenticationproviders.authenticationproviderdeleteparams':1164 'com.telnyx.sdk.models.authenticationproviders.authenticationproviderdeleteresponse':1166 'com.telnyx.sdk.models.authenticationproviders.authenticationproviderlistpage':866 'com.telnyx.sdk.models.authenticationproviders.authenticationproviderlistparams':868 'com.telnyx.sdk.models.authenticationproviders.authenticationproviderretrieveparams':1029 'com.telnyx.sdk.models.authenticationproviders.authenticationproviderretrieveresponse':1031 'com.telnyx.sdk.models.authenticationproviders.authenticationproviderupdateparams':1104 'com.telnyx.sdk.models.authenticationproviders.authenticationproviderupdateresponse':1106 'com.telnyx.sdk.models.authenticationproviders.settings':933 'com.telnyx.sdk.models.billinggroups.billinggroupcreateparams':1264 'com.telnyx.sdk.models.billinggroups.billinggroupcreateresponse':1266 'com.telnyx.sdk.models.billinggroups.billinggroupdeleteparams':1413 'com.telnyx.sdk.models.billinggroups.billinggroupdeleteresponse':1415 'com.telnyx.sdk.models.billinggroups.billinggrouplistpage':1218 'com.telnyx.sdk.models.billinggroups.billinggrouplistparams':1220 'com.telnyx.sdk.models.billinggroups.billinggroupretrieveparams':1308 'com.telnyx.sdk.models.billinggroups.billinggroupretrieveresponse':1310 'com.telnyx.sdk.models.billinggroups.billinggroupupdateparams':1362 'com.telnyx.sdk.models.billinggroups.billinggroupupdateresponse':1364 'com.telnyx.sdk.models.integrationsecrets.integrationsecretcreateparams':1533 'com.telnyx.sdk.models.integrationsecrets.integrationsecretcreateresponse':1535 'com.telnyx.sdk.models.integrationsecrets.integrationsecretdeleteparams':1584 'com.telnyx.sdk.models.integrationsecrets.integrationsecretlistpage':1473 'com.telnyx.sdk.models.integrationsecrets.integrationsecretlistparams':1475 'com.telnyx.sdk.models.telephonycredentials.telephonycredentialcreatetokenparams':1611 'common':108 'configur':1465 'congress':506,609 'connect':803 'control':154 'countri':395,455,526,580,671,750 'countrycod':496,603 'creat':176,202,229,232,285,337,398,437,440,512,529,674,753,881,906,910,977,987,1050,1125,1185,1226,1253,1270,1272,1323,1377,1428,1481,1498,1501,1548,1551,1593,1597 'createtoken':1615 'credenti':1604 'custom':401,466,532,677,756 'd9':953 'date':179,197,235,253,288,306,340,358,877,884,904,983,990,1010,1046,1053,1073,1121,1128,1148,1181,1188,1208,1229,1234,1251,1275,1280,1297,1326,1331,1348,1380,1385,1402,1431,1436,1453,1484,1496,1554,1566 'date-tim':178,196,234,252,287,305,339,357,876,883,903,982,989,1009,1045,1052,1072,1120,1127,1147,1180,1187,1207,1228,1233,1250,1274,1279,1296,1325,1330,1347,1379,1384,1401,1430,1435,1452,1483,1495,1553,1565 'db':956 'delet':311,315,329,713,716,720,731,1150,1154,1159,1170,1231,1277,1328,1382,1404,1408,1419,1433,1568,1572,1579,1586 'descript':181,213,237,290,342 'detail':636,1018 'e':77 'e.getmessage':82 'e.statuscode':81,84,96 'e29b':280,332,655,734,1038,1113,1173,1589,1618 'e29b-41d4-a716':279,331,654,733,1037,1112,1172,1588,1617 'e3':952 'els':94 'emerg':575,799 'enum':191,247,300,352,626,846,1245,1291,1342,1396,1447 'error':40,49,54,58,62,80,88,109,124,619 'exampl':30 'exist':639,718,1021,1083,1156 'exponenti':104,133 'extend':404,469,535,590,680,759 'f5586561':1316,1370,1421 'f5586561-8ff0':1315,1369,1420 'fail':46 'ff':947 'field':91,126 'finish':805 'first':407,446,538,683,762 'firstnam':498 'format':93,127 'foster':501 'found':121 'get':164,263,372,641,862,1024,1214,1299,1303,1469 'given':1576 'gradl':15 'group':1213,1247,1256,1293,1302,1344,1353,1398,1407,1449 'handl':41,61 'hasnextpag':156 'id':183,200,239,256,268,292,309,320,344,361,410,541,643,686,722,765,818,821,842,886,891,992,997,1026,1055,1060,1088,1130,1135,1161,1190,1195,1236,1241,1282,1287,1305,1333,1338,1356,1387,1392,1410,1438,1443,1486,1556,1578,1581,1607 'identifi':1488,1508,1522,1539,1558 'idpcertfingerprint':941 'idpentityid':962 'idpssotargeturl':966 'implement':16 'import':22,24,67,135,167,169,216,218,270,272,322,324,375,377,484,486,596,598,645,647,724,726,824,826,865,867,928,930,932,1028,1030,1103,1105,1163,1165,1217,1219,1263,1265,1307,1309,1361,1363,1412,1414,1472,1474,1532,1534,1583,1610 'initi':36 'instal':10 'insuffici':116 'integr':1456,1463,1515,1570,1574 'integrationsecret':1546 'integrationsecretcreateparam':1536 'integrationsecretcreateparams.builder':1538 'integrationsecretcreateparams.type.bearer':1543 'integrationsecretcreaterespons':1545 'integrationsecretlistpag':1476 'invalid':112,628 'ip':162,185,205,210,241,261,266,294,313,318,346 'ipaddress':223 'item':150 'iter':147 'java':5,9,21,66,166,215,269,321,374,483,595,644,723,823,864,927,1027,1102,1162,1216,1262,1306,1360,1411,1471,1531,1582,1609 'jwt':1601 'key':114 'kon':495 'last':412,448,543,688,767 'lastnam':500 'limit':51,99,130 'list':138,159,174,363,368,382,849,856,872,1210,1224,1455,1460,1479 'local':415,454,502,546,593,691,770 'manual':153 'method':139 'microsoft':815 'myorg':972 'myorg.myidp.com':964,968 'myorg.myidp.com/saml/metadata':963 'myorg.myidp.com/trust/saml2/http-post/sso':967 'name':393,408,413,447,449,451,524,539,544,669,684,689,748,763,768,888,899,917,919,937,994,1005,1057,1068,1092,1100,1132,1143,1192,1203,1238,1260,1284,1335,1358,1389,1440 'neighborhood':417,472,548,693,772 'network':48 'new':203,798,1503 'nextpag':158 'note':136 'number':420,475,551,696,775,810 'o':494 'object':621,630,897,1003,1066,1095,1141,1201 'okta':938 'oper':802 'option':212,457,586,820,921,1089,1259,1357,1524 'organ':890,996,1059,1134,1194,1240,1286,1337,1391,1442 'page':142,172,380,870,1222,1477 'page.autopager':151 'pagin':137 'param':74,221,230,489,513,601,617,935,978,1537,1549 'password':1525 'patch':1086,1354 'pend':192,248,301,353 'permiss':117 'phone':419,474,550,695,774 'post':207,443,577,816,914,1257,1519,1605 'postal':422,477,553,584,698,777 'postalcod':605 'product':64 'provid':853,861,909,913,1015,1023,1078,1085,1153,1158 'rate':50,98,129 'record':425,556,622,701,780,844,893,999,1062,1137,1197,1243,1289,1340,1394,1445,1490,1560 'refer':402,467,533,678,757 'requir':90,209,445,579,916,1521 'resourc':119 'respons':613,829,1613 'result':71,625 'retri':102,131 'retriev':258,277,631,634,652,1012,1016,1035,1314,1458 'return':140,175,231,284,336,366,383,514,618,659,738,839,854,873,979,1042,1117,1177,1225,1271,1322,1376,1427,1480,1550 'secret':1457,1464,1500,1504,1541,1571,1575 'secur':1514 'send':73 'servic':576,1518 'set':896,920,924,939,1002,1065,1080,1094,1096,1140,1200 'settings.builder':940 'setup':20 'short':898,918,1004,1067,1099,1142,1202 'shortnam':971 'shown':38 'skill' 'skill-telnyx-account-access-java' 'sourc':188,244,297,349 'source-team-telnyx' 'sso':851,859 'status':190,246,299,351 'street':428,452,559,582,704,783 'streetaddress':504,607 'string':182,184,187,189,201,214,238,240,243,245,257,291,293,296,298,310,343,345,348,350,362,389,391,394,397,400,403,406,409,411,414,416,418,421,424,427,430,433,463,465,468,471,473,476,479,520,522,525,528,531,534,537,540,542,545,547,549,552,555,558,561,564,589,592,594,624,665,667,670,673,676,679,682,685,687,690,692,694,697,700,703,706,709,744,746,749,752,755,758,761,764,766,769,771,773,776,779,782,785,788,822,889,895,900,995,1001,1006,1058,1064,1069,1093,1101,1133,1139,1144,1193,1199,1204,1239,1261,1285,1336,1359,1390,1441,1487,1489,1492,1526,1528,1530,1557,1559,1562,1612 'suggest':629,795,848 'system.err.println':78,86 'telnyx':2,6,13,18 'telnyx-account-access-java':1 'telnyxcli':26 'telnyxokhttpclient.fromenv':28 'telnyxserviceexcept':76 'text':11 'thread.sleep':106 'time':180,198,236,254,289,307,341,359,878,885,905,984,991,1011,1047,1054,1074,1122,1129,1149,1182,1189,1209,1230,1235,1252,1276,1281,1298,1327,1332,1349,1381,1386,1403,1432,1437,1454,1485,1497,1555,1567 'token':1527,1596,1600 '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' 'toy':493 'toy-o':492 'tri':69 'type':426,557,623,702,781,845,894,1000,1063,1138,1198,1244,1290,1341,1395,1446,1491,1523,1542,1561 'updat':194,250,303,355,431,562,707,786,901,1007,1070,1075,1079,1110,1145,1205,1248,1294,1345,1350,1368,1399,1450,1493,1563 'upload':807 'uri':926,1098 'url':925,1097 'us':497,604 'use':143,155,1512 'user':199,255,308,360,1468 'usernam':1529 'uuid':843,887,892,993,998,1056,1061,1131,1136,1191,1196,1237,1242,1283,1288,1334,1339,1388,1393,1439,1444 'valid':53,87,123,434,480,565,568,571,616,627,710,789 'var':70,149 'wait':100","prices":[{"id":"e4e3d9f7-454f-4a58-b148-dd35aa969b5b","listingId":"ca8973a7-b7a7-4b67-998b-fe9746dd706b","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:49.825Z"}],"sources":[{"listingId":"ca8973a7-b7a7-4b67-998b-fe9746dd706b","source":"github","sourceId":"team-telnyx/ai/telnyx-account-access-java","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-account-access-java","isPrimary":false,"firstSeenAt":"2026-04-18T22:05:49.825Z","lastSeenAt":"2026-04-22T12:54:39.304Z"}],"details":{"listingId":"ca8973a7-b7a7-4b67-998b-fe9746dd706b","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-account-access-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":"ed5f12c9777c086c402cf0c7e062d9b9c52c1bf1","skill_md_path":"skills/telnyx-account-access-java/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-account-access-java"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-account-access-java","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-account-access-java"},"updatedAt":"2026-04-22T12:54:39.304Z"}}