Skip to main content
POST
/
api
/
v1
/
catalog
/
chips
/
search
Search chips by phone number
curl --request POST \
  --url https://api.raul.ugps.io/api/v1/catalog/chips/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "search_term": "0587"
}
'
{
  "data": [
    {
      "sim_id": 123,
      "phone_number": "<string>",
      "iccid": "<string>",
      "status_id": {},
      "status_description": {},
      "endpoint_id": {},
      "last_connection": {},
      "operator": {},
      "network_type": {}
    }
  ],
  "total_matches": 123,
  "search_term": "<string>",
  "timestamp": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Body

application/json
search_term
string
required

Search term (last 4+ digits of phone number)

Minimum string length: 4
Example:

"0587"

Response

data
object[]
required
total_matches
number
required
search_term
string
required
timestamp
string
required