- Partner
- Genel Bakış
- Buy
- Sell
- Customers
- Balances
- Card Storage
- Delivery
- Product PricesGET
- Get OrdersGET
- Get OrderGET
- Get Order (Alternative)POST
- Partner LegalPOST
- Order StatussesGET
- E-Commerce API
- Catalog
- Customers
- Customer Address
- Checkout
- Legal
- WS
- Minted PricesGET
Customer Wallet Kyc - Bulk Upsert
Developing
Testing Env
Testing Env
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:
web
api-version
string
optional
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