- 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 Address - Create (Shipping)
Developing
Testing Env
Testing Env
POST
https://api.staging.mintedconnect.com/partner/customer/address
Last modified:2024-08-11 12:59:37
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
>= 1 characters<= 110 characters
type
enum<string>
required
Allowed values:
billingshipping
fullname
string
required
city
string
required
county
string
required
district
string
required
street
string
optional
address
string
required
Example
{
"external_customer_id": "{{external_customer_id}}",
"type": "shipping",
"fullname": "John Due",
"city": "İstanbul",
"county": "Beykoz",
"district": "Acarlar Mah.",
"street": "Sokak adı",
"address": "54 sok. No: 12"
}
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/address' \
--header 'x-client-id;' \
--header 'api-version: 3' \
--header 'Accept-Language: tr' \
--header 'Content-Type: application/json' \
--data-raw '{
"external_customer_id":"MTD0018232",
"type": "shipping",
"fullname":"John Due",
"city": "İstanbul",
"county": "Beykoz",
"district": "Acarlar Mah.",
"street":"Sokak adı",
"address": "54 sok. No: 12"
}'
Responses
🟢200OK
application/json
Body
data
object
required
type
enum<string>
required
Allowed values:
billingshipping
city
string
required
county
string
required
district
string
required
street
string
required
address
string
required
customer_id
integer
required
id
integer
required
success
boolean
required
code
integer
required
message
string
required
Example
{
"data": {
"type": "shipping",
"fullname": "John Due",
"city": "İstanbul",
"county": "Beykoz",
"district": "Acarlar Mah.",
"street": "Sokak adı",
"address": "full address",
"customer_id": 422,
"id": 7
},
"success": true,
"code": 0,
"message": ""
}
🟠401Unauthorized
🟠422Parameter Error
Modified at 2024-08-11 12:59:37