CSQ Docs
    CSQ Docs
    CSQ API Doc
    • CSQ API Doc
    • Dummy Product Usage Guide
    • Back to home
    • Location-based Products
    • Get Labels
      GET
    • Get Countries
      GET
    • Get Categories
      GET
    • Get States
      GET
    • Get Municipalities
      GET
    • Get Deliver Locations
      GET
    • Get Products
      GET
    • Get Fields
      GET
    • Get Nationalities
      GET
    • Create Cart
      POST
    • Purchase
      POST
    • Get Orders
      GET
    • Get Order Status Details
      GET
    • Get Orders All Info
      GET
    • Revert
      POST

      Get Order Status Details

      Pending
      GET
      /physical-products/sale/orders/details/{authorizationCode}

      Method Summary: Get Order Status Details#

      The Get Order Status Details method (GET /physical-products/sale/orders/details/{authorizationCode}) is used to retrieve the detailed information of a single physical product order, including the specific delivery location and beneficiary data.
      Unlike the Get Orders method, which provides a list of headers (summaries), this method focuses on fetching the complete order body or detail based on its unique authorization code.

      Key Usage Details#

      This method requires a single mandatory parameter in the path for identification and the standard security headers:
      ParameterTypeLocationPurpose
      authorizationCodestringPathThe unique code that identifies a specific order (equivalent to the localReference in the order header).
      U, SH, STstringHeaderSecurity or authentication tokens required to authorize the request.

      Expected Response (200 OK)#

      If the request is successful, the API returns an array containing a single object with the detailed status information, including:
      Detail FieldDescriptionSub-Fields
      statusDescriptionA textual description of the order's current status.N/A
      beneficiaryDetailed information about the person receiving the order.document, email, name, surname, phone, address
      locationDetailed delivery location information.municipality, state, deliverLocation

      Values for status#

      ValueDescription
      ACCEPTEDOrder acepted
      PENDINGTo be confirmed
      DELIVEREDOrder completed and delivered
      CANCELEDOrder canceled

      Request

      Path Params

      Header Params

      Request Code Samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://evsb.csqworld.com/physical-products/sale/orders/details/' \
      --header 'U: {{U}}' \
      --header 'SH: {{SH}}' \
      --header 'ST: {{ST}}'

      Responses

      🟢200Success
      application/json
      Body

      Example
      [
          {
              "statusDescription": "string",
              "beneficiary": {
                  "document": "string",
                  "email": "string",
                  "name": "string",
                  "surname": "string",
                  "phone": "string",
                  "address": "string"
              },
              "location": {
                  "municipality": "string",
                  "state": "string",
                  "deliverLocation": "stringstri"
              }
          }
      ]
      Modified atĀ 2026-01-13 15:14:25
      Previous
      Get Orders
      Next
      Get Orders All Info
      Built with