PressOne eSIM Developer Platform
  1. Manage orders
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
          • Get order
            GET
        • Manage eSIMs
          • Get eSIMs list
          • Get eSIM package history
    • Voice-only eSIM
      • Getting Started
      • Error handling
      • Endpoints
        • List Available Numbers
        • Claim Number
        • Renew Number
        • List User
  1. Manage orders

Get order

GET
/customer/v2/orders/{order_id}
This endpoint allows you to retrieve the details of a specific order from the PressOne ESIM API using the order ID. You can also include related data in the response by specifying optional parameters. The access token, obtained from the "Request Access Token" endpoint, should be included in the request.

Request

Path Params

Query Params

Header Params

Responses

🟠401Get Order (401)
application/json
Body

🟢200Get Order (200)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://prod.your-api-server.com/customer/v2/orders/?include=sims,user,status' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{token}}'
Response Response Example
401 - Success
{
  "statusCode": 401,
  "message": "Unauthorized - Invalid or expired token"
}
Modified at 2025-11-17 07:38:48
Previous
Get order list
Next
Get eSIMs list
Built with