{"id":"4a0cc8fa-6bd3-4b58-9a84-2c6fa68359b0","shortId":"Wueegb","kind":"skill","title":"telnyx-account-notifications-curl","tagline":">-","description":"<!-- Auto-generated from Telnyx OpenAPI specs. Do not edit. -->\n\n# Telnyx Account Notifications - 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 notification channels\n\nList notification channels.\n\n`GET /notification_channels`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/notification_channels\"\n```\n\nReturns: `channel_destination` (string), `channel_type_id` (enum: sms, voice, email, webhook), `created_at` (date-time), `id` (string), `notification_profile_id` (string), `updated_at` (date-time)\n\n## Create a notification channel\n\nCreate a notification channel.\n\n`POST /notification_channels`\n\nOptional: `channel_destination` (string), `channel_type_id` (enum: sms, voice, email, webhook), `created_at` (date-time), `id` (string), `notification_profile_id` (string), `updated_at` (date-time)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n      \"channel_type_id\": \"webhook\",\n      \"channel_destination\": \"https://example.com/webhooks\"\n  }' \\\n  \"https://api.telnyx.com/v2/notification_channels\"\n```\n\nReturns: `channel_destination` (string), `channel_type_id` (enum: sms, voice, email, webhook), `created_at` (date-time), `id` (string), `notification_profile_id` (string), `updated_at` (date-time)\n\n## Get a notification channel\n\nGet a notification channel.\n\n`GET /notification_channels/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/notification_channels/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `channel_destination` (string), `channel_type_id` (enum: sms, voice, email, webhook), `created_at` (date-time), `id` (string), `notification_profile_id` (string), `updated_at` (date-time)\n\n## Update a notification channel\n\nUpdate a notification channel.\n\n`PATCH /notification_channels/{id}`\n\nOptional: `channel_destination` (string), `channel_type_id` (enum: sms, voice, email, webhook), `created_at` (date-time), `id` (string), `notification_profile_id` (string), `updated_at` (date-time)\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/notification_channels/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `channel_destination` (string), `channel_type_id` (enum: sms, voice, email, webhook), `created_at` (date-time), `id` (string), `notification_profile_id` (string), `updated_at` (date-time)\n\n## Delete a notification channel\n\nDelete a notification channel.\n\n`DELETE /notification_channels/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/notification_channels/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `channel_destination` (string), `channel_type_id` (enum: sms, voice, email, webhook), `created_at` (date-time), `id` (string), `notification_profile_id` (string), `updated_at` (date-time)\n\n## List all Notifications Events Conditions\n\nReturns a list of your notifications events conditions.\n\n`GET /notification_event_conditions`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/notification_event_conditions\"\n```\n\nReturns: `allow_multiple_channels` (boolean), `associated_record_type` (enum: account, phone_number), `asynchronous` (boolean), `created_at` (date-time), `description` (string), `enabled` (boolean), `id` (string), `name` (string), `notification_event_id` (string), `parameters` (array[object]), `supported_channels` (array[string]), `updated_at` (date-time)\n\n## List all Notifications Events\n\nReturns a list of your notifications events.\n\n`GET /notification_events`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/notification_events\"\n```\n\nReturns: `created_at` (date-time), `enabled` (boolean), `id` (string), `name` (string), `notification_category` (string), `updated_at` (date-time)\n\n## List all Notifications Profiles\n\nReturns a list of your notifications profiles.\n\n`GET /notification_profiles`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/notification_profiles\"\n```\n\nReturns: `created_at` (date-time), `id` (string), `name` (string), `updated_at` (date-time)\n\n## Create a notification profile\n\nCreate a notification profile.\n\n`POST /notification_profiles`\n\nOptional: `created_at` (date-time), `id` (string), `name` (string), `updated_at` (date-time)\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 Notification Profile\"\n  }' \\\n  \"https://api.telnyx.com/v2/notification_profiles\"\n```\n\nReturns: `created_at` (date-time), `id` (string), `name` (string), `updated_at` (date-time)\n\n## Get a notification profile\n\nGet a notification profile.\n\n`GET /notification_profiles/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/notification_profiles/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `created_at` (date-time), `id` (string), `name` (string), `updated_at` (date-time)\n\n## Update a notification profile\n\nUpdate a notification profile.\n\n`PATCH /notification_profiles/{id}`\n\nOptional: `created_at` (date-time), `id` (string), `name` (string), `updated_at` (date-time)\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/notification_profiles/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `created_at` (date-time), `id` (string), `name` (string), `updated_at` (date-time)\n\n## Delete a notification profile\n\nDelete a notification profile.\n\n`DELETE /notification_profiles/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/notification_profiles/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `created_at` (date-time), `id` (string), `name` (string), `updated_at` (date-time)\n\n## List notification settings\n\nList notification settings.\n\n`GET /notification_settings`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/notification_settings\"\n```\n\nReturns: `associated_record_type` (string), `associated_record_type_value` (string), `created_at` (date-time), `id` (string), `notification_channel_id` (string), `notification_event_condition_id` (string), `notification_profile_id` (string), `parameters` (array[object]), `status` (enum: enabled, enable-received, enable-pending, enable-submitted, delete-received, delete-pending, delete-submitted, deleted), `updated_at` (date-time)\n\n## Add a Notification Setting\n\nAdd a notification setting.\n\n`POST /notification_settings`\n\nOptional: `associated_record_type` (string), `associated_record_type_value` (string), `created_at` (date-time), `id` (string), `notification_channel_id` (string), `notification_event_condition_id` (string), `notification_profile_id` (string), `parameters` (array[object]), `status` (enum: enabled, enable-received, enable-pending, enable-submitted, delete-received, delete-pending, delete-submitted, deleted), `updated_at` (date-time)\n\n```bash\ncurl \\\n  -X POST \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  \"https://api.telnyx.com/v2/notification_settings\"\n```\n\nReturns: `associated_record_type` (string), `associated_record_type_value` (string), `created_at` (date-time), `id` (string), `notification_channel_id` (string), `notification_event_condition_id` (string), `notification_profile_id` (string), `parameters` (array[object]), `status` (enum: enabled, enable-received, enable-pending, enable-submitted, delete-received, delete-pending, delete-submitted, deleted), `updated_at` (date-time)\n\n## Get a notification setting\n\nGet a notification setting.\n\n`GET /notification_settings/{id}`\n\n```bash\ncurl -H \"Authorization: Bearer $TELNYX_API_KEY\" \"https://api.telnyx.com/v2/notification_settings/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `associated_record_type` (string), `associated_record_type_value` (string), `created_at` (date-time), `id` (string), `notification_channel_id` (string), `notification_event_condition_id` (string), `notification_profile_id` (string), `parameters` (array[object]), `status` (enum: enabled, enable-received, enable-pending, enable-submitted, delete-received, delete-pending, delete-submitted, deleted), `updated_at` (date-time)\n\n## Delete a notification setting\n\nDelete a notification setting.\n\n`DELETE /notification_settings/{id}`\n\n```bash\ncurl \\\n  -X DELETE \\\n  -H \"Authorization: Bearer $TELNYX_API_KEY\" \\\n  \"https://api.telnyx.com/v2/notification_settings/550e8400-e29b-41d4-a716-446655440000\"\n```\n\nReturns: `associated_record_type` (string), `associated_record_type_value` (string), `created_at` (date-time), `id` (string), `notification_channel_id` (string), `notification_event_condition_id` (string), `notification_profile_id` (string), `parameters` (array[object]), `status` (enum: enabled, enable-received, enable-pending, enable-submitted, delete-received, delete-pending, delete-submitted, deleted), `updated_at` (date-time)","tags":["telnyx","account","notifications","curl","team-telnyx","agent-skills","ai-coding-agent","claude-code","cpaas","cursor","iot","llm"],"capabilities":["skill","source-team-telnyx","skill-telnyx-account-notifications-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-account-notifications-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,522 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.548Z","embedding":null,"createdAt":"2026-04-18T22:06:01.286Z","updatedAt":"2026-04-22T12:54:41.548Z","lastSeenAt":"2026-04-22T12:54:41.548Z","tsv":"'+13125550001':100 '+13125550002':102 '-1':110 '/notification_channels':215,264,358,408,493 '/notification_event_conditions':550 '/notification_events':617 '/notification_profiles':661,697,760,797,856 '/notification_settings':893,974,1122,1204 '/v2/messages':86 '/v2/notification_channels':226,320 '/v2/notification_channels/550e8400-e29b-41d4-a716-446655440000':370,455,507 '/v2/notification_event_conditions':561 '/v2/notification_events':628 '/v2/notification_profiles':672,735 '/v2/notification_profiles/550e8400-e29b-41d4-a716-446655440000':772,831,870 '/v2/notification_settings':904,1052 '/v2/notification_settings/550e8400-e29b-41d4-a716-446655440000':1134,1218 '/webhooks':317 '1':141 '10':22 '2':120 '401':61,142,159 '403':163 '404':166 '422':57,124,170 '429':54,133,176 'account':3,7,571 'add':965,969 'allow':563 'alway':62 'api':27,30,38,45,91,148,161,222,301,366,446,503,557,624,668,721,768,822,866,900,1043,1130,1214 'api.telnyx.com':85,225,319,369,454,506,560,627,671,734,771,830,869,903,1051,1133,1217 'api.telnyx.com/v2/messages':84 'api.telnyx.com/v2/notification_channels':224,318 'api.telnyx.com/v2/notification_channels/550e8400-e29b-41d4-a716-446655440000':368,453,505 'api.telnyx.com/v2/notification_event_conditions':559 'api.telnyx.com/v2/notification_events':626 'api.telnyx.com/v2/notification_profiles':670,733 'api.telnyx.com/v2/notification_profiles/550e8400-e29b-41d4-a716-446655440000':770,829,868 'api.telnyx.com/v2/notification_settings':902,1050 'api.telnyx.com/v2/notification_settings/550e8400-e29b-41d4-a716-446655440000':1132,1216 'application/json':97,307,452,727,828,1049 'array':594,598,936,1006,1084,1166,1250 'associ':567,906,910,976,980,1054,1058,1136,1140,1220,1224 'asynchron':574 'authent':41,59,144 'author':88,219,298,363,443,500,554,621,665,718,765,819,863,897,1040,1127,1211 'backoff':182 'bash':24,68,216,293,360,438,495,551,618,662,713,762,814,858,894,1035,1124,1206 'bearer':89,220,299,364,444,501,555,622,666,719,766,820,864,898,1041,1128,1212 'bodi':111,123,154 'boolean':566,575,584,636 'call':46 'case':116 'categori':642 'channel':210,213,228,231,258,262,266,269,309,313,322,325,352,356,372,375,402,406,411,414,457,460,487,491,509,512,565,597,923,993,1071,1153,1237 'check':69,128,146,173,202 'code':67,72,81,106,118,153,158 'common':156 'condit':540,548,928,998,1076,1158,1242 'content':95,305,450,725,826,1047 'content-typ':94,304,449,724,825,1046 'creat':239,255,259,277,333,383,422,468,520,576,630,674,688,692,699,737,774,800,833,872,915,985,1063,1145,1229 'curl':5,9,12,76,217,294,361,439,496,552,619,663,714,763,815,859,895,1036,1125,1207 'd':98,115,308,728 'date':242,253,280,291,336,347,386,397,425,436,471,482,523,534,579,603,633,647,677,686,702,711,740,749,777,786,803,812,836,845,875,884,918,963,988,1033,1066,1111,1148,1193,1232,1277 'date-tim':241,252,279,290,335,346,385,396,424,435,470,481,522,533,578,602,632,646,676,685,701,710,739,748,776,785,802,811,835,844,874,883,917,962,987,1032,1065,1110,1147,1192,1231,1276 'delay':139 'delet':484,488,492,498,847,851,855,861,951,954,957,959,1021,1024,1027,1029,1099,1102,1105,1107,1181,1184,1187,1189,1195,1199,1203,1209,1265,1268,1271,1273 'delete-pend':953,1023,1101,1183,1267 'delete-receiv':950,1020,1098,1180,1264 'delete-submit':956,1026,1104,1186,1270 'descript':581 'destin':229,267,314,323,373,412,458,510 'echo':107,112,121,125,134,143,150 'email':237,275,331,381,420,466,518 'enabl':583,635,940,942,945,948,1010,1012,1015,1018,1088,1090,1093,1096,1170,1172,1175,1178,1254,1256,1259,1262 'enable-pend':944,1014,1092,1174,1258 'enable-receiv':941,1011,1089,1171,1255 'enable-submit':947,1017,1095,1177,1261 'endpoint':187 'enum':234,272,328,378,417,463,515,570,939,1009,1087,1169,1253 'error':42,51,56,60,64,127,151,157,172 'esac':155 'event':539,547,590,608,615,927,997,1075,1157,1241 'exampl':34 'example.com':316 'example.com/webhooks':315 'exponenti':181 'export':25 'fail':48,145 'field':130,174 'format':132,175 'found':169 'get':214,349,353,357,549,616,660,751,755,759,892,1113,1117,1121 'h':87,93,218,297,303,362,442,448,499,553,620,664,717,723,764,818,824,862,896,1039,1045,1126,1210 'handl':43,63 'hello':104 'http':70,80,105,117,152 'id':233,244,248,271,282,286,311,327,338,342,359,377,388,392,409,416,427,431,462,473,477,494,514,525,529,585,591,637,679,704,742,761,779,798,805,838,857,877,920,924,929,933,990,994,999,1003,1068,1072,1077,1081,1123,1150,1154,1159,1163,1205,1234,1238,1243,1247 'import':183 'instal':10,16 'insuffici':164 'invalid':160 'key':28,31,39,92,149,162,223,302,367,447,504,558,625,669,722,769,823,867,901,1044,1131,1215 'limit':53,136,178 'linux':19 'list':186,208,211,536,543,605,611,649,655,886,889 'maco':18 'meta.total':203 'multipl':564 'n':79 'name':587,639,681,706,729,744,781,807,840,879 'navig':200 'network':50 'note':184 'notif':4,8,209,212,246,257,261,284,340,351,355,390,401,405,429,475,486,490,527,538,546,589,607,614,641,651,658,690,694,731,753,757,790,794,849,853,887,890,922,926,931,967,971,992,996,1001,1070,1074,1079,1115,1119,1152,1156,1161,1197,1201,1236,1240,1245 'number':193,573 'object':595,937,1007,1085,1167,1251 'option':265,410,698,799,975 'page':192,195,201,204 'pagin':185,189 'paramet':198,593,935,1005,1083,1165,1249 'patch':407,441,796,817 'pend':946,955,1016,1025,1094,1103,1176,1185,1260,1269 'permiss':165 'phone':572 'post':83,263,296,696,716,973,1038 'pre':15 'pre-instal':14 'product':66 'profil':247,285,341,391,430,476,528,652,659,691,695,732,754,758,791,795,850,854,932,1002,1080,1162,1246 'queri':197 'rate':52,135,177 'receiv':943,952,1013,1022,1091,1100,1173,1182,1257,1266 'record':568,907,911,977,981,1055,1059,1137,1141,1221,1225 'requir':129 'resourc':167 'respons':74,75,108,113,207 'result':190 'retri':137,179 'return':188,227,321,371,456,508,541,562,609,629,653,673,736,773,832,871,905,1053,1135,1219 'sed':114 'set':888,891,968,972,1116,1120,1198,1202 'setup':23 'size':196 'skill' 'skill-telnyx-account-notifications-curl' 'sleep':140 'sms':235,273,329,379,418,464,516 'source-team-telnyx' 'status':71,938,1008,1086,1168,1252 'string':230,245,249,268,283,287,324,339,343,374,389,393,413,428,432,459,474,478,511,526,530,582,586,588,592,599,638,640,643,680,682,705,707,743,745,780,782,806,808,839,841,878,880,909,914,921,925,930,934,979,984,991,995,1000,1004,1057,1062,1069,1073,1078,1082,1139,1144,1151,1155,1160,1164,1223,1228,1235,1239,1244,1248 'submit':949,958,1019,1028,1097,1106,1179,1188,1263,1272 'success':122 'support':596 'tail':109 'telnyx':2,6,26,37,90,147,221,300,365,445,502,556,623,667,720,767,821,865,899,1042,1129,1213 'telnyx-account-notifications-curl':1 'text':11,103 'time':243,254,281,292,337,348,387,398,426,437,472,483,524,535,580,604,634,648,678,687,703,712,741,750,778,787,804,813,837,846,876,885,919,964,989,1034,1067,1112,1149,1194,1233,1278 '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' 'type':96,232,270,306,310,326,376,415,451,461,513,569,726,827,908,912,978,982,1048,1056,1060,1138,1142,1222,1226 'updat':250,288,344,394,399,403,433,479,531,600,644,683,708,746,783,788,792,809,842,881,960,1030,1108,1190,1274 'use':36,191 'valid':55,126,171 'valu':913,983,1061,1143,1227 'voic':236,274,330,380,419,465,517 'w':78 'webhook':238,276,312,332,382,421,467,519 'window':21 'x':82,295,440,497,715,816,860,1037,1208","prices":[{"id":"ac2bc307-f754-4be6-a994-ef8a09233705","listingId":"4a0cc8fa-6bd3-4b58-9a84-2c6fa68359b0","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:01.286Z"}],"sources":[{"listingId":"4a0cc8fa-6bd3-4b58-9a84-2c6fa68359b0","source":"github","sourceId":"team-telnyx/ai/telnyx-account-notifications-curl","sourceUrl":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-account-notifications-curl","isPrimary":false,"firstSeenAt":"2026-04-18T22:06:01.286Z","lastSeenAt":"2026-04-22T12:54:41.548Z"}],"details":{"listingId":"4a0cc8fa-6bd3-4b58-9a84-2c6fa68359b0","quickStartSnippet":null,"exampleRequest":null,"exampleResponse":null,"schema":null,"openapiUrl":null,"agentsTxtUrl":null,"citations":[],"useCases":[],"bestFor":[],"notFor":[],"kindDetails":{"org":"team-telnyx","slug":"telnyx-account-notifications-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":"dfbe28f2a5ed751e9b1837f7fc9b090aa2f72fbb","skill_md_path":"skills/telnyx-account-notifications-curl/SKILL.md","default_branch":"main","skill_tree_url":"https://github.com/team-telnyx/ai/tree/main/skills/telnyx-account-notifications-curl"},"layout":"multi","source":"github","category":"ai","frontmatter":{"name":"telnyx-account-notifications-curl","description":">-"},"skills_sh_url":"https://skills.sh/team-telnyx/ai/telnyx-account-notifications-curl"},"updatedAt":"2026-04-22T12:54:41.548Z"}}