Minted Connect
  1. Customers
Minted Connect
Partner
  • Partner
  • E-Commerce API
  • Genel Bakış
    • Genel Bakış
    • Partner cüzdan entegrasyonu
  • Buy
    • Customer - B2B2C
      • From Amount
        • Price Fix (Get Prices)
        • Calculate Price
        • Buy (Gold)
        • Buy (Silver)
        • Buy (Platinum)
      • From Total Price
        • Price Fix (Get Prices)
        • Buy (Gold)
        • Buy (Silver)
    • Partner - B2B
      • Price Fix (Get Prices)
      • Buy (Gold)
      • Buy (Silver)
    • Card Payment
      • Payment Get All Types
      • Card Payment Bin Query (Installments/Comissions)
      • Card Payment Price Fix (Get Prices)
      • Card Payment Buy (with card number)
      • Card Payment Buy (with card token)
      • Card Payment Get Order
  • Sell
    • Customer - B2B2C
      • Price Fix (Get Prices)
      • Sell (Gold)
      • Sell (Silver)
    • Partner - B2B
      • Price Fix (Get Prices)
      • Sell (Gold)
      • Sell (Silver)
  • Customers
    • Create Customer
      POST
    • Create Business Customer
      POST
    • Update Customer
      PATCH
    • Remove Customer Id
      DELETE
    • Get Customer
      GET
    • Customer Wallet Kyc - Get
      GET
    • Customer Wallet Kyc - Upsert
      POST
    • Customer Wallet Kyc - Bulk Upsert
      POST
  • Balances
    • Partner Balance
      GET
    • Customer Balance
      GET
    • Update Customer Cash Balance
      PATCH
    • Stats
      POST
  • Card Storage
    • Card Storage List
      POST
    • Card Storage Add
      POST
    • Card Storage Delete
      DELETE
  • Delivery
    • Delivery - List Wallets
      POST
    • Delivery - Calculate
      POST
    • Delivery - Create (Pay With Cash)
      POST
    • Delivery - Create (Pay With Card Payment)
      POST
  • Product Prices
    GET
  • Get Orders
    GET
  • Get Order
    GET
  • Get Order (Alternative)
    POST
  • Partner Legal
    POST
  • Order Statusses
    GET
  1. Customers

Customer Wallet Kyc - Bulk Upsert

Developing
Testing Env
https://api.staging.mintedconnect.com
Testing Env
https://api.staging.mintedconnect.com
POST
https://api.staging.mintedconnect.com
/partner/customer/walletkyc/bulk
Last modified:2024-06-26 11:30:50
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
x-client-id
string 
required
Default value: web
Default:
web
api-version
string 
optional
Latest version: 3
Default:
3
Accept-Language
string 
optional
Default:
tr
Body Params application/json
kyc
array [object {2}] 
required
>= 1 items<= 1000 items
customer_external_id
string 
optional
status
string 
optional
Example
{
  "kcy": [
    {
      "customer_external_id": "{{customer_external_id}}",
      "status": "approved"
    }
  ]
}

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 --request POST 'https://api.staging.mintedconnect.com/partner/customer/walletkyc/bulk' \
--header 'x-client-id;' \
--header 'api-version: 3' \
--header 'Accept-Language: tr' \
--header 'Content-Type: application/json' \
--data-raw '{
    "kcy": [
        {
            "customer_external_id": "",
            "status": "approved"
        }
    ]
}'

Responses

🟢200OK
application/json
Body
data
array [object {3}] 
required
wallet_id
integer 
optional
status
string 
optional
customer_external_id
string 
optional
success
boolean 
required
code
integer 
required
message
string 
required
Example
{
  "data": [
    {
      "wallet_id": 217,
      "status": "approved",
      "customer_external_id": "92440753"
    }
  ],
  "success": true,
  "code": 0,
  "message": ""
}
Modified at 2024-06-26 11:30:50
Previous
Customer Wallet Kyc - Upsert
Next
Partner Balance
Built with