PressOne eSIM Developer Platform
  1. Endpoints
PressOne eSIM Developer Platform
  • OVERVIEW
    • Introduction
    • Attribute descriptions
    • FAQ
    • User journeys
      • Top-up Journey
      • Purchase Journey
    • Guides
      • eSIM installation methods for API Partners
      • How to generate the QR code for an eSIM
  • REST API
    • Data / Data + Voice + SMS eSIM
      • Introduction
      • Error handling
      • Endpoints
        • Authenticate
          • Request access token
        • Check balance
          • Get balance
        • Compatible devices
          • Get compatible device lite list
        • Browse packages
          • Get packages
        • Place order
          • Submit order
        • Install eSIM
          • Get eSIM
          • Get installation instructions
        • Monitor usage
          • Get usage (data, text & voice)
        • Place top up order
          • Get top-up package list
          • Submit top-up order
        • Manage orders
          • Get order list
          • Get order
        • Manage eSIMs
          • Get eSIMs list
          • Get eSIM package history
    • Voice-only eSIM
      • Getting Started
      • Error handling
      • Endpoints
        • List Available Numbers
          GET
        • Claim Number
          POST
        • Renew Number
          POST
        • List User
          GET
  1. Endpoints

Renew Number

POST
/api/third-party/partner/renew-number/
Call this endpoint to trigger renewal for a user's subscription. This endpoint can also be used to switch a user from free trial to a paying subscription.
Usage Notes:
This endpoint renews the user's subscription based on their current plan
If the user is on a free trial, this will switch them to a paying subscription
The email must match the email used when the number was originally claimed

Request

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://prod.your-api-server.com/api/third-party/partner/renew-number/' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
  "email": "user@example.com"
}'
Response Response Example
{
  "message": "string",
  "success": true,
  "data": null
}
Modified at 2025-11-16 11:01:32
Previous
Claim Number
Next
List User
Built with