{"id":"82cf8951-6a70-4fd4-8127-2a8fd66130c0","shortId":"eD6HLu","kind":"skill","title":"telnyx-messaging-profiles-curl","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Messaging Profiles - curl\n\n## Installation\n\n```text\n# curl is pre-installed on macOS, Linux, and Windows 10+\n```\n\n## Setup\n\n```bash\nexport TELNYX_API_KEY=\"YOUR_API_KEY_HERE\"\n```\n\nAll examples below use `$TELNYX_API_KEY` for authentication.\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```bash\n# Check HTTP status code in response\nresponse=$(curl -s -w \"\\n%{http_code}\" \\\n  -X POST \"https://api.telnyx.com/v2/messages\" \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"to\": \"+13125550001\", \"from\": \"+13125550002\", \"text\": \"Hello\"}')\n\nhttp_code=$(echo \"$response\" | tail -1)\nbody=$(echo \"$response\" | sed '$d')\n\ncase $http_code in\n  2*) echo \"Success: $body\" ;;\n  422) echo \"Validation error — check required fields and formats\" ;;\n  429) echo \"Rate limited — retry after delay\"; sleep 1 ;;\n  401) echo \"Authentication failed — check TELNYX_API_KEY\" ;;\n  *)   echo \"Error $http_code: $body\" ;;\nesac\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 endpoints return paginated results. Use `page[number]` and `page[size]` query parameters to navigate pages. Check `meta.total_pages` in the response.\n\n## List messaging profiles\n\n`GET /messaging_profiles`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/messaging_profiles\"\n```\n\nReturns: `ai_assistant_id` (string | null), `alpha_sender` (string | null), `created_at` (date-time), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `health_webhook_url` (url), `id` (uuid), `mms_fall_back_to_sms` (boolean), `mms_transcoding` (boolean), `mobile_only` (boolean), `name` (string), `number_pool_settings` (object | null), `organization_id` (string), `record_type` (enum: messaging_profile), `redaction_enabled` (boolean), `redaction_level` (integer), `resource_group_id` (string | null), `smart_encoding` (boolean), `updated_at` (date-time), `url_shortener_settings` (object | null), `v1_secret` (string), `webhook_api_version` (enum: 1, 2, 2010-04-01), `webhook_failover_url` (url), `webhook_url` (url), `whitelisted_destinations` (array[string])\n\n## Create a messaging profile\n\n`POST /messaging_profiles` — Required: `name`, `whitelisted_destinations`\n\nOptional: `ai_assistant_id` (string | null), `alpha_sender` (string | null), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `health_webhook_url` (url), `mms_fall_back_to_sms` (boolean), `mms_transcoding` (boolean), `mobile_only` (boolean), `number_pool_settings` (object | null), `resource_group_id` (string | null), `smart_encoding` (boolean), `url_shortener_settings` (object | null), `webhook_api_version` (enum: 1, 2, 2010-04-01), `webhook_failover_url` (url), `webhook_url` (url)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"name\": \"my-resource\",\n  \"whitelisted_destinations\": [\n    \"US\"\n  ]\n}' \\\n  \"https://api.telnyx.com/v2/messaging_profiles\"\n```\n\nReturns: `ai_assistant_id` (string | null), `alpha_sender` (string | null), `created_at` (date-time), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `health_webhook_url` (url), `id` (uuid), `mms_fall_back_to_sms` (boolean), `mms_transcoding` (boolean), `mobile_only` (boolean), `name` (string), `number_pool_settings` (object | null), `organization_id` (string), `record_type` (enum: messaging_profile), `redaction_enabled` (boolean), `redaction_level` (integer), `resource_group_id` (string | null), `smart_encoding` (boolean), `updated_at` (date-time), `url_shortener_settings` (object | null), `v1_secret` (string), `webhook_api_version` (enum: 1, 2, 2010-04-01), `webhook_failover_url` (url), `webhook_url` (url), `whitelisted_destinations` (array[string])\n\n## Retrieve a messaging profile\n\n`GET /messaging_profiles/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `ai_assistant_id` (string | null), `alpha_sender` (string | null), `created_at` (date-time), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `health_webhook_url` (url), `id` (uuid), `mms_fall_back_to_sms` (boolean), `mms_transcoding` (boolean), `mobile_only` (boolean), `name` (string), `number_pool_settings` (object | null), `organization_id` (string), `record_type` (enum: messaging_profile), `redaction_enabled` (boolean), `redaction_level` (integer), `resource_group_id` (string | null), `smart_encoding` (boolean), `updated_at` (date-time), `url_shortener_settings` (object | null), `v1_secret` (string), `webhook_api_version` (enum: 1, 2, 2010-04-01), `webhook_failover_url` (url), `webhook_url` (url), `whitelisted_destinations` (array[string])\n\n## Update a messaging profile\n\n`PATCH /messaging_profiles/{id}`\n\nOptional: `alpha_sender` (string | null), `created_at` (date-time), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `id` (uuid), `mms_fall_back_to_sms` (boolean), `mms_transcoding` (boolean), `mobile_only` (boolean), `name` (string), `number_pool_settings` (object | null), `record_type` (enum: messaging_profile), `smart_encoding` (boolean), `updated_at` (date-time), `url_shortener_settings` (object | null), `v1_secret` (string), `webhook_api_version` (enum: 1, 2, 2010-04-01), `webhook_failover_url` (url), `webhook_url` (url), `whitelisted_destinations` (array[string])\n\n```bash\ncurl \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `ai_assistant_id` (string | null), `alpha_sender` (string | null), `created_at` (date-time), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `health_webhook_url` (url), `id` (uuid), `mms_fall_back_to_sms` (boolean), `mms_transcoding` (boolean), `mobile_only` (boolean), `name` (string), `number_pool_settings` (object | null), `organization_id` (string), `record_type` (enum: messaging_profile), `redaction_enabled` (boolean), `redaction_level` (integer), `resource_group_id` (string | null), `smart_encoding` (boolean), `updated_at` (date-time), `url_shortener_settings` (object | null), `v1_secret` (string), `webhook_api_version` (enum: 1, 2, 2010-04-01), `webhook_failover_url` (url), `webhook_url` (url), `whitelisted_destinations` (array[string])\n\n## Delete a messaging profile\n\n`DELETE /messaging_profiles/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `ai_assistant_id` (string | null), `alpha_sender` (string | null), `created_at` (date-time), `daily_spend_limit` (string), `daily_spend_limit_enabled` (boolean), `enabled` (boolean), `health_webhook_url` (url), `id` (uuid), `mms_fall_back_to_sms` (boolean), `mms_transcoding` (boolean), `mobile_only` (boolean), `name` (string), `number_pool_settings` (object | null), `organization_id` (string), `record_type` (enum: messaging_profile), `redaction_enabled` (boolean), `redaction_level` (integer), `resource_group_id` (string | null), `smart_encoding` (boolean), `updated_at` (date-time), `url_shortener_settings` (object | null), `v1_secret` (string), `webhook_api_version` (enum: 1, 2, 2010-04-01), `webhook_failover_url` (url), `webhook_url` (url), `whitelisted_destinations` (array[string])\n\n## List phone numbers associated with a messaging profile\n\n`GET /messaging_profiles/{id}/phone_numbers`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000/phone_numbers\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `eligible_messaging_products` (array[string]), `features` (object), `health` (object), `id` (string), `messaging_product` (string), `messaging_profile_id` (string | null), `organization_id` (string), `phone_number` (string), `record_type` (enum: messaging_phone_number, messaging_settings), `tags` (array[string]), `traffic_type` (string), `type` (enum: long-code, toll-free, short-code, longcode, tollfree, shortcode), `updated_at` (date-time)\n\n## List short codes associated with a messaging profile\n\n`GET /messaging_profiles/{id}/short_codes`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000/short_codes\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `id` (uuid), `messaging_profile_id` (string | null), `record_type` (enum: short_code), `short_code` (string), `tags` (array), `updated_at` (date-time)\n\n## List short codes\n\n`GET /short_codes`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/short_codes\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `id` (uuid), `messaging_profile_id` (string | null), `record_type` (enum: short_code), `short_code` (string), `tags` (array), `updated_at` (date-time)\n\n## Retrieve a short code\n\n`GET /short_codes/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/short_codes/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `id` (uuid), `messaging_profile_id` (string | null), `record_type` (enum: short_code), `short_code` (string), `tags` (array), `updated_at` (date-time)\n\n## Update short code\n\nUpdate the settings for a specific short code. To unbind a short code from a profile, set the `messaging_profile_id` to `null` or an empty string. To add or update tags, include the tags field as an array of strings.\n\n`PATCH /short_codes/{id}` — Required: `messaging_profile_id`\n\nOptional: `tags` (array)\n\n```bash\ncurl \\\n  -X PATCH \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n  \"messaging_profile_id\": \"550e8400-e29b-41d4-a716-446655440000\"\n}' \\\n  \"https://api.telnyx.com/v2/short_codes/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `country_code` (string), `created_at` (date-time), `id` (uuid), `messaging_profile_id` (string | null), `record_type` (enum: short_code), `short_code` (string), `tags` (array), `updated_at` (date-time)","tags":["telnyx","messaging","profiles","curl","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm"],"capabilities":["skill","source-team-telnyx","skill-telnyx-messaging-profiles-curl","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-messaging-profiles-curl","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,771 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-22T06:54:39.473Z","embedding":null,"createdAt":"2026-04-18T22:06:45.771Z","updatedAt":"2026-04-22T06:54:39.473Z","lastSeenAt":"2026-04-22T06:54:39.473Z","tsv":"'+13125550001':100 '+13125550002':102 '-01':318,403,531,655,745,869,995 '-04':317,402,530,654,744,868,994 '-1':110 '/messaging_profiles':212,335,548,672,886,1016,1106 '/phone_numbers':1018 '/short_codes':1108,1155,1203,1292 '/v2/messages':86 '/v2/messaging_profiles':223,436 '/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000':560,774,900 '/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000/phone_numbers':1029 '/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000/short_codes':1119 '/v2/short_codes':1166 '/v2/short_codes/550e8400-e29b-41d4-a716-446655440000':1215,1328 '1':141,314,399,527,651,741,865,991 '10':22 '2':120,315,400,528,652,742,866,992 '2010':316,401,529,653,743,867,993 '401':61,142,159 '403':163 '404':166 '41d4':1323 '422':57,124,170 '429':54,133,176 '446655440000':1325 '550e8400':1320 'a716':1324 'add':1278 'ai':225,341,438,562,776,902 'alpha':230,346,443,567,675,781,907 'alway':62 'api':27,30,38,45,91,148,161,219,311,396,419,524,556,648,738,765,862,896,988,1025,1115,1162,1211,1309 'api.telnyx.com':85,222,435,559,773,899,1028,1118,1165,1214,1327 'api.telnyx.com/v2/messages':84 'api.telnyx.com/v2/messaging_profiles':221,434 'api.telnyx.com/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000':558,772,898 'api.telnyx.com/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000/phone_numbers':1027 'api.telnyx.com/v2/messaging_profiles/550e8400-e29b-41d4-a716-446655440000/short_codes':1117 'api.telnyx.com/v2/short_codes':1164 'api.telnyx.com/v2/short_codes/550e8400-e29b-41d4-a716-446655440000':1213,1326 'application/json':97,425,771,1315 'array':328,541,665,755,879,1005,1042,1073,1145,1192,1241,1288,1300,1354 'assist':226,342,439,563,777,903 'associ':1010,1100 'authent':41,59,144 'author':88,216,416,553,762,893,1022,1112,1159,1208,1306 'back':258,367,471,595,699,809,935 'backoff':182 'bash':24,68,213,411,550,757,888,1019,1109,1156,1205,1301 'bearer':89,217,417,554,763,894,1023,1113,1160,1209,1307 'bodi':111,123,154 'boolean':247,249,261,264,267,285,296,358,360,370,373,376,389,460,462,474,477,480,498,509,584,586,598,601,604,622,633,692,694,702,705,708,723,798,800,812,815,818,836,847,924,926,938,941,944,962,973 'call':46 'case':116 'check':69,128,146,173,202 'code':67,72,81,106,118,153,158,1032,1082,1088,1099,1122,1140,1142,1153,1169,1187,1189,1201,1218,1236,1238,1249,1257,1262,1331,1349,1351 'common':156 'content':95,423,769,1313 'content-typ':94,422,768,1312 'countri':1031,1121,1168,1217,1330 'creat':234,330,447,571,679,785,911,1034,1124,1171,1220,1333 'curl':5,9,12,76,214,412,551,758,889,1020,1110,1157,1206,1302 'd':98,115,426,1316 'daili':239,243,350,354,452,456,576,580,684,688,790,794,916,920 'date':237,300,450,513,574,637,682,727,788,851,914,977,1037,1095,1127,1149,1174,1196,1223,1245,1336,1358 'date-tim':236,299,449,512,573,636,681,726,787,850,913,976,1036,1094,1126,1148,1173,1195,1222,1244,1335,1357 'delay':139 'delet':881,885,891 'destin':327,339,432,540,664,754,878,1004 'e29b':1322 'e29b-41d4-a716':1321 'echo':107,112,121,125,134,143,150 'elig':1039 'empti':1275 'enabl':246,248,284,357,359,459,461,497,583,585,621,691,693,797,799,835,923,925,961 'encod':295,388,508,632,722,846,972 'endpoint':187 'enum':280,313,398,493,526,617,650,718,740,831,864,957,990,1066,1079,1138,1185,1234,1347 'error':42,51,56,60,64,127,151,157,172 'esac':155 'exampl':34 'exponenti':181 'export':25 'fail':48,145 'failov':320,405,533,657,747,871,997 'fall':257,366,470,594,698,808,934 'featur':1044 'field':130,174,1285 'format':132,175 'found':169 'free':1085 'get':211,547,1015,1105,1154,1202 'group':290,383,503,627,841,967 'h':87,93,215,415,421,552,761,767,892,1021,1111,1158,1207,1305,1311 'handl':43,63 'health':250,361,463,587,801,927,1046 'hello':104 'http':70,80,105,117,152 'id':227,254,276,291,343,384,440,467,489,504,549,564,591,613,628,673,695,778,805,827,842,887,904,931,953,968,1017,1048,1055,1059,1107,1129,1133,1176,1180,1204,1225,1229,1270,1293,1297,1319,1338,1342 'import':183 'includ':1282 'instal':10,16 'insuffici':164 'integ':288,501,625,839,965 'invalid':160 'key':28,31,39,92,149,162,220,420,557,766,897,1026,1116,1163,1212,1310 'level':287,500,624,838,964 'limit':53,136,178,241,245,352,356,454,458,578,582,686,690,792,796,918,922 'linux':19 'list':186,208,1007,1097,1151 'long':1081 'long-cod':1080 'longcod':1089 'maco':18 'messag':3,7,209,281,332,494,545,618,669,719,832,883,958,1013,1040,1050,1053,1067,1070,1103,1131,1178,1227,1268,1295,1317,1340 'meta.total':203 'mms':256,262,365,371,469,475,593,599,697,703,807,813,933,939 'mobil':265,374,478,602,706,816,942 'my-resourc':428 'n':79 'name':268,337,427,481,605,709,819,945 'navig':200 'network':50 'note':184 'null':229,233,274,293,306,345,349,381,386,394,442,446,487,506,519,566,570,611,630,643,678,715,733,780,784,825,844,857,906,910,951,970,983,1057,1135,1182,1231,1272,1344 'number':193,270,377,483,607,711,821,947,1009,1062,1069 'object':273,305,380,393,486,518,610,642,714,732,824,856,950,982,1045,1047 'option':340,674,1298 'organ':275,488,612,826,952,1058 'page':192,195,201,204 'pagin':185,189 'paramet':198 'patch':671,760,1291,1304 'permiss':165 'phone':1008,1061,1068 'pool':271,378,484,608,712,822,948 'post':83,334,414 'pre':15 'pre-instal':14 'product':66,1041,1051 'profil':4,8,210,282,333,495,546,619,670,720,833,884,959,1014,1054,1104,1132,1179,1228,1265,1269,1296,1318,1341 'queri':197 'rate':52,135,177 'record':278,491,615,716,829,955,1064,1136,1183,1232,1345 'redact':283,286,496,499,620,623,834,837,960,963 'requir':129,336,1294 'resourc':167,289,382,430,502,626,840,966 'respons':74,75,108,113,207 'result':190 'retri':137,179 'retriev':543,1198 'return':188,224,437,561,775,901,1030,1120,1167,1216,1329 'secret':308,521,645,735,859,985 'sed':114 'sender':231,347,444,568,676,782,908 'set':272,304,379,392,485,517,609,641,713,731,823,855,949,981,1071,1252,1266 'setup':23 'short':1087,1098,1139,1141,1152,1186,1188,1200,1235,1237,1248,1256,1261,1348,1350 'short-cod':1086 'shortcod':1091 'shorten':303,391,516,640,730,854,980 'size':196 'skill' 'skill-telnyx-messaging-profiles-curl' 'sleep':140 'smart':294,387,507,631,721,845,971 'sms':260,369,473,597,701,811,937 'source-team-telnyx' 'specif':1255 'spend':240,244,351,355,453,457,577,581,685,689,791,795,917,921 'status':71 'string':228,232,242,269,277,292,309,329,344,348,353,385,441,445,455,482,490,505,522,542,565,569,579,606,614,629,646,666,677,687,710,736,756,779,783,793,820,828,843,860,880,905,909,919,946,954,969,986,1006,1033,1043,1049,1052,1056,1060,1063,1074,1077,1123,1134,1143,1170,1181,1190,1219,1230,1239,1276,1290,1332,1343,1352 'success':122 'tag':1072,1144,1191,1240,1281,1284,1299,1353 'tail':109 'telnyx':2,6,26,37,90,147,218,418,555,764,895,1024,1114,1161,1210,1308 'telnyx-messaging-profiles-curl':1 'text':11,103 'time':238,301,451,514,575,638,683,728,789,852,915,978,1038,1096,1128,1150,1175,1197,1224,1246,1337,1359 'toll':1084 'toll-fre':1083 'tollfre':1090 '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' 'traffic':1075 'transcod':263,372,476,600,704,814,940 'type':96,279,424,492,616,717,770,830,956,1065,1076,1078,1137,1184,1233,1314,1346 'unbind':1259 'updat':297,510,634,667,724,848,974,1092,1146,1193,1242,1247,1250,1280,1355 'url':252,253,302,321,322,324,325,363,364,390,406,407,409,410,465,466,515,534,535,537,538,589,590,639,658,659,661,662,729,748,749,751,752,803,804,853,872,873,875,876,929,930,979,998,999,1001,1002 'us':433 'use':36,191 'uuid':255,468,592,696,806,932,1130,1177,1226,1339 'v1':307,520,644,734,858,984 'valid':55,126,171 'version':312,397,525,649,739,863,989 'w':78 'webhook':251,310,319,323,362,395,404,408,464,523,532,536,588,647,656,660,737,746,750,802,861,870,874,928,987,996,1000 'whitelist':326,338,431,539,663,753,877,1003 'window':21 'x':82,413,759,890,1303","prices":[{"id":"5568a0af-8298-4969-a98d-8cc31c8ce1ad","listingId":"82cf8951-6a70-4fd4-8127-2a8fd66130c0","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:06:45.771Z"}],"sources":[{"listingId":"82cf8951-6a70-4fd4-8127-2a8fd66130c0","source":"github","sourceId":"team-telnyx/ai/telnyx-messaging-profiles-curl","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-messaging-profiles-curl","isPrimary":false,"firstSeenAt":"2026-04-18T22:06:45.771Z","lastSeenAt":"2026-04-22T06:54:39.473Z"}],"details":{"listingId":"82cf8951-6a70-4fd4-8127-2a8fd66130c0","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-messaging-profiles-curl","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":"16f179f18c88499fdfbfa447868c2a8b86924322","skill_md_path":"skills/telnyx-messaging-profiles-curl/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-messaging-profiles-curl"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-messaging-profiles-curl","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-messaging-profiles-curl"},"updatedAt":"2026-04-22T06:54:39.473Z"}}