- 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
Card Storage List
Developing
Testing Env
Testing Env
POST
https://api.staging.mintedconnect.com/partner/cards
Last modified:2023-10-19 09:49:57
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
external_customer_id
string
required
Example
{
"external_customer_id": "{{external_customer_id}}"
}
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/cards' \
--header 'x-client-id;' \
--header 'api-version: 3' \
--header 'Accept-Language: tr' \
--header 'Content-Type: application/json' \
--data-raw '{
"external_customer_id":"MTD0018232"
}'
Responses
🟢200OK
application/json
Body
data
array [object {9}]
required
id
integer
required
uuid
string
optional
customer_id
integer
required
card_holder
string
required
card_family
string | null
optional
card_token
string
required
card_expiry
string
required
card_mask
string
required
active
boolean
required
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": [
{
"id": 2,
"uuid": "64120991-8E5B-4526-8E4D-43B1701CB53B",
"customer_id": 1,
"card_holder": "John Due",
"card_association": "Visa",
"card_family": null,
"card_token": "a0334f0e1b9c0c3422492e09d44c5ac2",
"card_expiry": "05/28",
"card_mask": "404809******7528",
"active": true,
"customer_external_id": "1801262568"
}
],
"success": true,
"code": 0,
"message": ""
}
Modified at 2023-10-19 09:49:57