Skip to content

SIM

Operations related to SIM management.

List SIMs

Request

This endpoint retrieves a list of SIMs(both eSIMs and physical sim cards) associated with organization.

Security
ApiKeyAuth
Query
page_sizestring
pagestring
is_esimboolean
labelstring
Example:label=Green
GET
/v3/sims
curl -i -X GET \
  'https://api.tellisim.com/v3/sims?page_size=string&page=string&is_esim=true&label=Green&key=YOUR_API_KEY_HERE'

Responses

Successful response containing a list of SIMs

Bodyapplication/json
errorbooleanrequired

Indicates whether an error occurred during the request

Example:false
dataArray of objects(ESIM)required

Contains an array of SIM objects

next_pagestring or nullrequired

A token for pagination, indicating if there are more results available

Example:"MQ=="
Response
{ "error": false, "data": [ {} ], "next_page": "MQ==" }