Minted Connect
  1. Customers
Minted Connect
E-Commerce API
  • Partner
  • E-Commerce API
  • Catalog
    • Products
      GET
    • Get Product
      GET
    • Prices
      GET
    • Categories
      GET
  • Customers
    • Create Customer
      POST
    • Update Customer
      PATCH
    • Remove Customer Id
      DELETE
    • Get Customer
      GET
  • Customer Address
    • Customer Address - List
      GET
    • Customer Address - Delete
      DELETE
    • Customer Address - Create (Shipping)
      POST
    • Customer Address - Create (Billing)
      POST
    • Customer Address - Create Multiple
      POST
  • Checkout
    • Get Basket
      GET
    • Get Incomplete Baskets
      GET
    • Add to Basket (New basket)
      POST
    • Add to Basket (Existing Basket)
      POST
    • Set Existing Address
      PATCH
    • Set Custom Address
      PATCH
    • Update Item
      PATCH
    • Delete Item
      DELETE
    • Clear Basket (Delete Items)
      DELETE
    • Payment Get All Types
      GET
    • Complete Basket
      PUT
    • Get Orders
      GET
    • Get Order
      POST
  • Legal
    • Legal Types
    • Partner Legal PDF
  1. Customers

Get Customer

Testing
Testing Env
https://api.staging.mintedconnect.com
Testing Env
https://api.staging.mintedconnect.com
GET
https://api.staging.mintedconnect.com
/partner/customer/{{external_customer_id}}
Last modified:2024-08-07 15:13:33
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
api-version
string 
optional
Example:
2
x-client-id
string 
required
Default value: web
Default:
web
Accept-Language
string 
optional
Default:
tr

Request 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 -g --request GET 'https://api.staging.mintedconnect.com/partner/customer/MTD0018232' \
--header 'api-version: 2' \
--header 'api-version;' \
--header 'x-client-id;' \
--header 'Accept-Language: tr'

Responses

🟢200OK
application/json
Body
data
object 
required
external_id
string 
required
>= 1 characters<= 110 characters
firstname
string 
required
middlename
string 
optional
lastname
string 
required
fullname
string 
optional
email
string 
optional
phone
string 
required
gender
string 
optional
identity_number
string 
required
birthdate
string 
optional
wallets
array [object {10}] 
required
success
boolean 
required
code
integer 
required
message
string 
required
Example
{
    "data": {
        "external_id": "555555",
        "firstname": "John",
        "middlename": "",
        "lastname": "Due",
        "fullname": "John Due",
        "email": "[email protected]",
        "phone": "+905071112233",
        "gender": "M",
        "identity_number": "1234567888",
        "birthdate": "1970-01-31",
        "wallets": [
            {
                "id": 1785,
                "customer_external_id": "555555",
                "name": "Gold Wallet",
                "currency_id": 1000004,
                "currency_symbol": "",
                "currency_code": "MAU",
                "is_cash": false,
                "balance": 0,
                "blocked": 0,
                "real_balance": 0
            },
            {
                "id": 1786,
                "customer_external_id": "555555",
                "name": "Silver Wallet",
                "currency_id": 1000005,
                "currency_symbol": "",
                "currency_code": "MAG",
                "is_cash": false,
                "balance": 0,
                "blocked": 0,
                "real_balance": 0
            },
            {
                "id": 1787,
                "customer_external_id": "555555",
                "name": "Turkish Lira Wallet",
                "currency_id": 1000003,
                "currency_symbol": "₺",
                "currency_code": "TRY",
                "is_cash": true,
                "balance": 0,
                "blocked": 0,
                "real_balance": 0
            }
        ]
    },
    "success": true,
    "code": 0,
    "message": ""
}
🟠401Unauthorized
🟠404Record Not Found
Previous
Remove Customer Id
Next
Customer Address - List
Built with