Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.
get_api_artifactsOne API's artifacts, grouped by type.
get_openapiThe primary OpenAPI for this API.
find_similar_apisAPIs that look like this one.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools →
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/kore-wireless-sims-resource-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no email required.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Programmable Wireless Sims Resource API
description: The KORE Programmable Wireless REST API
termsOfService: https://pardot.korewireless.com/koremsa
contact:
name: KORE Support
url: https://korewireless.service-now.com/csm
email: support@korewireless.com
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
version: 1.0.0
servers:
- url: https://programmable-wireless.api.korewireless.com
security:
- {}
- Auth: []
tags:
- name: Sims Resource
paths:
/v1/Sims:
get:
summary: List Sims
tags:
- Sims Resource
operationId: listSims
parameters:
- name: Status
in: query
description: Only return Sim resources with this status.
schema:
$ref: '#/components/schemas/SimStatus'
- name: Iccid
in: query
description: Only return Sim resources with this ICCID. This will return a list with a maximum size of 1.
schema:
type: string
examples:
readEmpty:
value: iccid
readFull:
value: iccid
- name: RatePlan
in: query
description: The SID or unique name of a RatePlan resource. Only return Sim resources assigned to this RatePlan resource.
schema:
type: string
examples:
readEmpty:
value: rate_plan
readFull:
value: rate_plan
- name: EId
in: query
description: Deprecated.
schema:
type: string
- name: SimRegistrationCode
in: query
description: Only return Sim resources with this registration code. This will return a list with a maximum size of 1.
schema:
type: string
- name: PageSize
in: query
description: How many resources to return in each list page. The default is 50, and the maximum is 1000.
schema:
type: integer
minimum: 1
maximum: 1000
- name: Page
in: query
description: The page index. This value is simply for client state.
schema:
type: integer
minimum: 0
- name: PageToken
in: query
description: The page token. This is provided by the API.
schema:
type: string
responses:
'200':
description: Data Usage List
content:
application/json:
schema:
type: object
properties:
sims:
type: array
items:
$ref: '#/components/schemas/Sim'
meta:
properties:
first_page_url:
format: uri
type: string
key:
type: string
next_page_url:
format: uri
type:
- string
- 'null'
page:
type: integer
page_size:
type: integer
previous_page_url:
format: uri
type:
- string
- 'null'
url:
format: uri
type: string
type: object
title: ListSimsResponse
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'400':
description: Invalid request
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'401':
description: Credentials were not provided and are required to access this resource
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'403':
description: Credentials were not provided and are required to access this resource
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'404':
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'415':
description: Credentials were not provided and are required to access this resource
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'422':
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'503':
description: Server is temporary not available
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
x-code-samples:
- lang: cURL
label: cURL
source: 'curl --location --globoff ''https://programmable-wireless.api.korewireless.com/v1/Sims?Status=<string>&Iccid=<string>&RatePlan=<string>&EId=<string>&SimRegistrationCode=<string>&PageSize=<integer>&Page=<integer>&PageToken=<string>'' \
--header ''Authorization: Bearer <YOUR_AUTH_TOKEN>'''
- lang: js
label: NodeJs
source: "var request = require('request');\nvar options = {\n 'method': 'GET',\n 'url': 'https://programmable-wireless.api.korewireless.com/v1/Sims?Status=<string>&Iccid=<string>&RatePlan=<string>&EId=<string>&SimRegistrationCode=<string>&PageSize=<integer>&Page=<integer>&PageToken=<string>',\n 'headers': {\n 'Authorization': 'Bearer <YOUR_AUTH_TOKEN>',\n 'Accept': 'application/json'\n }\n};\nrequest(options, function (error, response) {\n if (error) throw new Error(error);\n console.log(response.body);\n});\n"
- lang: java
label: Java
source: "OkHttpClient client = new OkHttpClient().newBuilder()\n .build();\nMediaType mediaType = MediaType.parse(\"text/plain\");\nRequestBody body = RequestBody.create(mediaType, \"\");\nRequest request = new Request.Builder()\n .url(\"https://programmable-wireless.api.korewireless.com/v1/Sims?Status=<string>&Iccid=<string>&RatePlan=<string>&EId=<string>&SimRegistrationCode=<string>&PageSize=<integer>&Page=<integer>&PageToken=<string>\")\n .method(\"GET\", body)\n .addHeader(\"Authorization\", \"Bearer <YOUR_AUTH_TOKEN>\")\n .addHeader(\"Accept\", \"application/json\")\n .build();\nResponse response = client.newCall(request).execute();"
- lang: cs
label: C#
source: "var options = new RestClientOptions(\"https://programmable-wireless.api.korewireless.com/v1/Sims?Status=<string>&Iccid=<string>&RatePlan=<string>&EId=<string>&SimRegistrationCode=<string>&PageSize=<integer>&Page=<integer>&PageToken=<string>\")\n{\n MaxTimeout = -1, \n};\nvar client = new RestClient(options);\nvar request = new RestRequest(\"\", Method.Get);\nrequest.addHeader(\"Authorization\", \"Bearer <YOUR_AUTH_TOKEN>\");\nrequest.AddHeader(\"Accept\", \"application/json\");\nRestResponse response = await client.ExecuteAsync(request);\nConsole.WriteLine(response.Content);"
- lang: PHP
label: Php
source: "<?php\n\n$curl = curl_init();\n\ncurl_setopt_array($curl, array(\n CURLOPT_URL => 'https://programmable-wireless.api.korewireless.com/v1/Sims?Status=<string>&Iccid=<string>&RatePlan=<string>&EId=<string>&SimRegistrationCode=<string>&PageSize=<integer>&Page=<integer>&PageToken=<string>',\n CURLOPT_RETURNTRANSFER => true,\n CURLOPT_ENCODING => '',\n CURLOPT_MAXREDIRS => 10,\n CURLOPT_TIMEOUT => 0,\n CURLOPT_FOLLOWLOCATION => true,\n CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,\n CURLOPT_CUSTOMREQUEST => 'GET',\n CURLOPT_HTTPHEADER => array(\n 'Authorization: Bearer <YOUR_AUTH_TOKEN>'\n CURLOPT_HTTPHEADER => array(\n 'Accept: application/json'\n ),\n));\n\n$response = curl_exec($curl);\n\ncurl_close($curl);\necho $response;\n"
- lang: py
label: Python
source: "import requests\n\nurl = \"https://programmable-wireless.api.korewireless.com/v1/Sims?Status=<string>&Iccid=<string>&RatePlan=<string>&EId=<string>&SimRegistrationCode=<string>&PageSize=<integer>&Page=<integer>&PageToken=<string>\"\n\npayload = {}\nheaders = {\n 'Authorization': 'Bearer <YOUR_AUTH_TOKEN>',\n 'Accept': 'application/json'\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, data=payload)\n\nprint(response.text)\n"
/v1/Sims/{Sid}:
parameters:
- name: Sid
in: path
description: The SID of the RatePlan resource to fetch.
schema:
type: string
required: true
get:
summary: Get a Sim
tags:
- Sims Resource
operationId: getASim
responses:
'200':
description: Get Sim
content:
application/json:
schema:
$ref: '#/components/schemas/Sim'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'400':
description: Invalid request
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'401':
description: Credentials were not provided and are required to access this resource
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'403':
description: Credentials were not provided and are required to access this resource
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'404':
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'415':
description: Credentials were not provided and are required to access this resource
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'422':
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'503':
description: Server is temporary not available
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
x-code-samples:
- lang: cURL
label: cURL
source: 'curl --location --globoff ''https://programmable-wireless.api.korewireless.com/v1/Sims/<string>'' \
--header ''Authorization: Bearer <YOUR_AUTH_TOKEN>'''
- lang: js
label: NodeJs
source: "var request = require('request');\nvar options = {\n 'method': 'GET',\n 'url': 'https://programmable-wireless.api.korewireless.com/v1/Sims/<string>',\n 'headers': {\n 'Authorization': 'Bearer <YOUR_AUTH_TOKEN>',\n 'Accept': 'application/json'\n }\n};\nrequest(options, function (error, response) {\n if (error) throw new Error(error);\n console.log(response.body);\n});\n"
- lang: java
label: Java
source: "OkHttpClient client = new OkHttpClient().newBuilder()\n .build();\nMediaType mediaType = MediaType.parse(\"text/plain\");\nRequestBody body = RequestBody.create(mediaType, \"\");\nRequest request = new Request.Builder()\n .url(\"https://programmable-wireless.api.korewireless.com/v1/Sims/<string>\")\n .method(\"GET\", body)\n .addHeader(\"Authorization\", \"Bearer <YOUR_AUTH_TOKEN>\")\n .addHeader(\"Accept\", \"application/json\")\n .build();\nResponse response = client.newCall(request).execute();"
- lang: cs
label: C#
source: "var options = new RestClientOptions(\"https://programmable-wireless.api.korewireless.com/v1/Sims/<string>\")\n{\n MaxTimeout = -1, \n};\nvar client = new RestClient(options);\nvar request = new RestRequest(\"\", Method.Get);\nrequest.addHeader(\"Authorization\", \"Bearer <YOUR_AUTH_TOKEN>\");\nrequest.AddHeader(\"Accept\", \"application/json\");\nRestResponse response = await client.ExecuteAsync(request);\nConsole.WriteLine(response.Content);"
- lang: PHP
label: Php
source: "<?php\n\n$curl = curl_init();\n\ncurl_setopt_array($curl, array(\n CURLOPT_URL => 'https://programmable-wireless.api.korewireless.com/v1/Sims/<string>',\n CURLOPT_RETURNTRANSFER => true,\n CURLOPT_ENCODING => '',\n CURLOPT_MAXREDIRS => 10,\n CURLOPT_TIMEOUT => 0,\n CURLOPT_FOLLOWLOCATION => true,\n CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,\n CURLOPT_CUSTOMREQUEST => 'GET',\n CURLOPT_HTTPHEADER => array(\n 'Authorization: Bearer <YOUR_AUTH_TOKEN>'\n CURLOPT_HTTPHEADER => array(\n 'Accept: application/json'\n ),\n));\n\n$response = curl_exec($curl);\n\ncurl_close($curl);\necho $response;\n"
- lang: py
label: Python
source: "import requests\n\nurl = \"https://programmable-wireless.api.korewireless.com/v1/Sims/<string>\"\n\npayload = {}\nheaders = {\n 'Authorization': 'Bearer <YOUR_AUTH_TOKEN>',\n 'Accept': 'application/json'\n}\n\nresponse = requests.request(\"GET\", url, headers=headers, data=payload)\n\nprint(response.text)\n"
post:
summary: Update A Sim
tags:
- Sims Resource
operationId: updateASim
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
title: UpdateSimRequest
properties:
UniqueName:
type: string
description: An application-defined string that uniquely identifies the resource. It can be used in place of the `sid` in the URL path to address the resource.
CallbackMethod:
type: string
format: http-method
enum:
- GET
- POST
description: 'The HTTP method we should use to call `callback_url`. Can be: `POST` or `GET`. The default is `POST`.'
CallbackUrl:
type: string
format: uri
description: The URL we should call using the `callback_url` when the SIM has finished updating. When the SIM transitions from `new` to `ready` or from any status to `deactivated`, we call this URL when the status changes to an intermediate status (`ready` or `deactivated`) and again when the status changes to its final status (`active` or `canceled`).
FriendlyName:
type: string
description: A descriptive string that you create to describe the Sim resource. It does not need to be unique.
RatePlan:
type: string
description: The SID or unique name of the RatePlan resource to which the Sim resource should be assigned.
Status:
$ref: '#/components/schemas/SimStatus'
CommandsCallbackMethod:
type: string
format: http-method
enum:
- GET
- POST
description: 'The HTTP method we should use to call `commands_callback_url`. Can be: `POST` or `GET`. The default is `POST`.'
CommandsCallbackUrl:
type: string
format: uri
description: The URL we should call using the `commands_callback_method` when the SIM sends a Command. Your server should respond with an HTTP status code in the 200 range; any response body is ignored.
SmsFallbackMethod:
type: string
format: http-method
enum:
- GET
- POST
description: 'The HTTP method we should use to call `sms_fallback_url`. Can be: `GET` or `POST`. Default is `POST`.'
SmsFallbackUrl:
type: string
format: uri
description: The URL we should call using the `sms_fallback_method` when an error occurs while retrieving or executing the TwiML requested from `sms_url`.
SmsMethod:
type: string
format: http-method
enum:
- GET
- POST
description: 'The HTTP method we should use to call `sms_url`. Can be: `GET` or `POST`. Default is `POST`.'
SmsUrl:
type: string
format: uri
description: The URL we should call using the `sms_method` when the SIM-connected device sends an SMS message that is not a Command.
VoiceFallbackMethod:
type: string
format: http-method
enum:
- GET
- POST
description: Deprecated.
VoiceFallbackUrl:
type: string
format: uri
description: Deprecated.
VoiceMethod:
type: string
format: http-method
enum:
- GET
- POST
description: Deprecated.
VoiceUrl:
type: string
format: uri
description: Deprecated.
ResetStatus:
$ref: '#/components/schemas/SimResetStatus'
AccountSid:
type: string
description: The SID of the Account to which the Sim resource should belong. The Account SID can only be that of the requesting Account or that of a Subaccount of the requesting Account. Only valid when the Sim resource's status is `new`. For more information, see the Move SIMs between Subaccounts documentation.
responses:
'200':
description: Data Usage Update
content:
application/json:
schema:
$ref: '#/components/schemas/Sim'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'400':
description: Invalid request
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'401':
description: Credentials were not provided and are required to access this resource
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'403':
description: Credentials were not provided and are required to access this resource
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'404':
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'415':
description: Credentials were not provided and are required to access this resource
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'422':
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'500':
description: Internal Server Error
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
'503':
description: Server is temporary not available
content:
application/json:
schema:
$ref: '#/components/schemas/UsageApiErrorResponse'
headers:
Access-Control-Allow-Origin:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Credentials:
schema:
type: string
Access-Control-Allow-Headers:
schema:
type: string
x-code-samples:
- lang: cURL
label: cURL
source: 'curl --location --globoff ''https://programmable-wireless.api.korewireless.com/v1/Sims/<string>'' \
--header ''Authorization: Bearer <YOUR_AUTH_TOKEN>''
--header ''Content-Type: application/x-www-form-urlencoded'' \
--header ''Accept: application/json'' \
--data-urlencode ''UniqueName=<string>'' \
--data-urlencode ''CallbackMethod=<http-method>'' \
--data-urlencode ''CallbackUrl=<uri>'' \
--data-urlencode ''FriendlyName=<string>'' \
--data-urlencode ''RatePlan=<string>'' \
--data-urlencode ''Status=<string>'' \
--data-urlencode ''CommandsCallbackMethod=<http-method>'' \
--data-urlencode ''CommandsCallbackUrl=<uri>'' \
--data-urlencode ''SmsFallbackMethod=<http-method>'' \
--data-urlencode ''SmsFallbackUrl=<uri>'' \
--data-urlencode ''SmsMethod=<http-method>'' \
--data-urlencode ''SmsUrl=<uri>'' \
--data-urlencode ''VoiceFallbackMethod=<http-method>'' \
--data-urlencode ''VoiceFallbackUrl=<uri>'' \
--data-urlencode ''VoiceMethod=<http-method>'' \
--data-urlencode ''VoiceUrl=<uri>'' \
--data-urlencode ''ResetStatus=<string>'' \
--data-urlencode ''AccountSid=<string>'''
- lang: js
label: NodeJs
source: "var request = require('request');\nvar options = {\n 'method': 'POST',\n 'url': 'https://programmable-wireless.
# --- truncated at 32 KB (52 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/kore-wireless/refs/heads/main/openapi/kore-wireless-sims-resource-api-openapi.yml