2016-12-21 5 views
2

カートからチェックアウトまでの処理後に配送情報を保存できません。我々はmagento 2 apiを使用しています。私のポスト情報はそのmagento 2を使用しているユーザーの配送情報を保存しようとするとエラーが発生する2 api

{ 
"addressInformation": { 
"shipping_address": { 
"id": 0, 
"region": "IND", 
"region_id": 0, 
"region_code": "string", 
"country_id": "IN", 
"street": [ 
"string" 
], 
"company": "string", 
"telephone": "123456789", 
"fax": "string", 
"postcode": "700091", 
"city": "Kolkata", 
"firstname": "Sauptik", 
"lastname": "Basak", 
"middlename": "string", 
"prefix": "string", 
"suffix": "string", 
"vat_id": "string", 
"customer_id": 2, 
"email": "[email protected]", 
"same_as_billing": 0, 
"customer_address_id": 0, 
"save_in_address_book": 1,  
"custom_attributes": [ 
{ 
"attribute_code": "string", 
"value": "string" 
} 
] 
}, 
"billing_address": { 
"id": 0, 
"region": "string", 
"region_id": 0, 
"region_code": "string", 
"country_id": "IN", 
"street": [ 
"string" 
], 
"company": "string", 
"telephone": "123456789", 
"fax": "string", 
"postcode": "700091", 
"city": "Kolkata", 
"firstname": "Sauptik", 
"lastname": "Basak", 
"middlename": "string", 
"prefix": "string", 
"suffix": "string", 
"vat_id": "string", 
"customer_id": 2, 
"email": "string", 
"same_as_billing": 0, 
"customer_address_id": 0, 
"save_in_address_book": 0,  
"custom_attributes": [ 
{ 
"attribute_code": "string", 
"value": "string" 
} 
] 
}, 
"shipping_method_code": "string", 
"shipping_carrier_code": "string", 
"extension_attributes": {}, 
"custom_attributes": [ 
{ 
"attribute_code": "string", 
"value": "string" 
} 
] 
} 
} 

私のエンドポイントのようなものであることはhttp://192.168.0.61/WallisFudge/index.php/rest/V1/carts/3/shipping-information

私はそのエラーを取得していますです

「メッセージ」:「。出荷情報を保存することができません。入力されたデータを確認してください」

Magentoの2 API

答えて

0

てチェックアウトを処理することができないことはできますがhttp://192.168.0.61/WallisFudge/index.php/rest/V1/carts/3/shipping-methodsを呼び出すことで使用可能な「送料・メソッド」を検索してみることができます。そして、データを取得し、次のようにコードを割り当てる:

"shipping_method_code": "your_shipping_method_code_here"、 "shipping_carrier_code": "your_shipping_carrier_code_here"、

を希望、このことができます。

ジョエマー

関連する問題