1. Orders
Minted Connect
Walletable E-Commerce
  • Partner
  • E-Commerce API
  • Embedded Webview
  • Walletable E-Commerce
  • Customers
    • Create Customer
      POST
    • Update Customer
      PATCH
    • Remove Customer Id
      DELETE
    • Get Customer
      GET
  • Products
    • Get Products
      GET
  • Complete
    • Complete Buy
      POST
    • Complete Sell
      POST
    • Complete Delivery
      POST
  • Orders
    • Get Orders
      GET
    • Get Order Invoice
      GET
    • Receipt
      GET
    • Balance / Wallet
      GET
  • Baskets
    • Get Active Basket
      GET
    • Delete Basket Item
      DELETE
    • Create Basket / Add Basket Item
      POST
    • Clear Basket
      DELETE
    • Update Basket Item
      PATCH
  • Currency Rates
    GET
  • Rate History
    GET
  1. Orders

Get Order Invoice

Testing
Testing Env
https://api.staging.mintedconnect.com
Testing Env
https://api.staging.mintedconnect.com
GET
https://api.staging.mintedconnect.com
/partner/order/{{external_order_id}}/invoice
Last modified:2026-06-25 12:12:46
Maintainer:Not configured

Request

Authorization
Provide your encrypted digest scheme data in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Digest username=guest, realm="test", nonce="2", uri="/uri", response="***"
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 --globoff 'https://api.staging.mintedconnect.com/partner/order//invoice' \
--header 'api-version: 2' \
--header 'api-version: 3' \
--header 'x-client-id: web' \
--header 'Accept-Language: tr' \
--header 'Authorization: Digest <parameters>'

Responses

🟢200OK
application/json
Bodyapplication/json

Example
{
    "data": {
        "guid": "F6F6AFA5-8CAF-4582-AC47-12699E6D9C81",
        "order_code": "FE9HURU6",
        "external_id": "HYAQA01373",
        "channel": "partner",
        "tx_type": "oneoffpurchase",
        "price_token": null,
        "price": 543.5,
        "tax": 0,
        "total": 543.5,
        "currency_rate": null,
        "currency_total": 0,
        "status_id": 1,
        "status_name": "New",
        "items": [
            {
                "product_id": 3000001,
                "product_name": "Gold - Digital storage",
                "product_weight": 1,
                "spot_price": 49.41,
                "price": 54.35,
                "tax_rate": 0,
                "tax": 0,
                "amount": 10,
                "total": 543.5,
                "currency_id": null,
                "currency_rate": null,
                "currency_total": 0
            }
        ],
        "customer": {
            "external_id": "MTD0018232",
            "firstname": "Mehmet",
            "middlename": "",
            "lastname": "Gülbilge",
            "fullname": "Mehmet Gülbilge",
            "email": "[email protected]",
            "phone": "+905322808035",
            "gender": "M",
            "identity_number": "12345677938",
            "birthdate": "1970-01-31"
        }
    },
    "success": true,
    "code": 0,
    "message": ""
}
Modified at 2026-06-25 12:12:46
Previous
Get Orders
Next
Receipt
Built with