Activating Physical SIM
When you purchase an eSIM from 1PSIM, you will immediately receive the QR code, SM-DP+ address, and activation code. The eSIM is automatically provisioned and ready for use—no additional steps are required.
In contrast, when you purchase a physical SIM, you will receive a 1PSIM activation code via email. Once the physical SIM is delivered, you can activate it using the activation code along with the ESN number printed on the back of the SIM card.

This section explains the process of activating your physical SIM using the 1PSIM API.
Create a new user
POST
/public/sim/{esn}/activate
ESN is the code at the back of the physical SIMs received
Body
activationCode
string
When you place order, you will receive activation code to your email. You can also login to 1psim.com to obtain your activation code.
wfcEnabled
boolean
if you want to enable wificalling at the time of activation, you can set it to "ture" else, put "false"
zipCodeActivation
string
Your SIM will be assigned a phone number based on this zip code.
Example
curl -X 'POST' \
'https://1psim.api.lifeline.mobi/administrator/sim/89898989898989898989/activate' \
-H 'accept: */*' \
-H 'Content-Type: application/json' \
-d '{
"activationCode": "ADCDEFGHIJKLMNOPQRSTUFWXYZ",
"wfcEnabled": true,
"e911AddressLine1": "1234 Wells Street",
"e911AddressLine2": "Apt 1234",
"e911AddressCity": "Tree Foreast",
"e911AddressState": "California",
"e911AddressZipCode": "12345",
"zipCode": "12345"
}'
Response
{
"statusCode": 200,
"message": "SUCCESS: The sim and plan? has been successfully activated."
}
Last updated