Minted Connect
  1. Customers
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
  • Summary
    • Get Summary
      GET
    • Post Summary
      POST
    • Summary Buy
      POST
    • Summary Sell
      POST
    • Summary Delivery
      POST
  • Excel Import
    • Import Queue
      POST
    • Import Status
      GET
  1. Customers

Create Customer

Testing
Testing Env
https://api.staging.mintedconnect.com
Testing Env
https://api.staging.mintedconnect.com
POST
https://api.staging.mintedconnect.com
/partner/customer
Last modified:2025-12-24 08:13:55
Maintainer:Not configured
Method will be create a customer

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

Body Params application/json

Example
{
    "external_id": "{% faker datatype.uuid %}",
    "firstname": "{% faker name.firstName %}",
    "middlename": "",
    "lastname": "{% faker name.lastName %}",
    "email": "{% faker internet.email %}",
    "phone": "+90 532 280 80 35",
    "gender": "M",
    "identity_number": "12345677938",
    "birthdate": "1970-01-31"
}

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 POST 'https://api.staging.mintedconnect.com/partner/customer' \
--header 'api-version: 2' \
--header 'api-version: 3' \
--header 'x-client-id: web' \
--header 'Accept-Language: tr' \
--header 'Authorization: Digest <parameters>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "external_id": "{% faker datatype.uuid %}",
    "firstname": "{% faker name.firstName %}",
    "middlename": "",
    "lastname": "{% faker name.lastName %}",
    "email": "{% faker internet.email %}",
    "phone": "+90 532 280 80 35",
    "gender": "M",
    "identity_number": "12345677938",
    "birthdate": "1970-01-31"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "data": {
        "id": 2,
        "external_id": "MTD0018232",
        "company_id": 2000000,
        "user_id": null,
        "firstname": "Minted",
        "middlename": null,
        "lastname": "User",
        "fullname": "Minted User",
        "email": "[email protected]",
        "phone": null,
        "gender": null,
        "identity_number": null,
        "birthdate": null,
        "created_at": "2023-03-05 04:51:18",
        "updated_at": "2023-03-05 04:51:18"
    },
    "success": true,
    "code": 0,
    "message": ""
}
🟠422Parameter Error
Modified at 2025-12-24 08:13:55
Next
Update Customer
Built with