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 list

GET
/customer/v2/orders
This endpoint allows you to retrieve a list of your orders from the PressOne ESIM API. By using various filters, you can customize the results to match specific criteria. The access token, obtained from the "Request Access Token" endpoint, should be included in the request.

Request

Query Params

Header Params

Body Params multipart/form-data

Responses

🟠400Order List (422)
application/json
Body

🟢200Order List (200)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://prod.your-api-server.com/customer/v2/orders?include=sims,user,status&filter[created_at]=Y-m-d - Y-m-d&filter[code]=20221021-003188&filter[order_status]=completed&filter[iccid]=891000000000001868&filter[description]=Your order description&limit=50&page=1' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{token}}'
Response Response Example
400 - Success
{
  "success": false,
  "code": "4008",
  "message": "Validation failed",
  "data": null,
  "timestamp": "2024-01-15T10:30:00.000Z"
}
Modified at 2025-11-17 07:07:35
Previous
Submit top-up order
Next
Get order
Built with