Last active
April 29, 2016 15:23
-
-
Save artem-tkachuck/461572806c42b895d4b921bedd2cc05d to your computer and use it in GitHub Desktop.
Customer API Request Example @call.colibo.de
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"display_name": "Christine Fink", | |
"birthday": "2016-01-02", | |
"gender": "female", | |
"source_external_id": "FG98765435-k", | |
"addresses": [ | |
{ | |
"name": "home", | |
"is_main": true, | |
"firstname": "Christine", | |
"lastname": "Fink", | |
"line1": "Hallesches Ufer", | |
"line2": "21", | |
"line3": "55", | |
"postcode": "13589", | |
"city": "Berlin", | |
"country_code": "DE" | |
}, | |
{ | |
"name": "work", | |
"company": "Garden Master", | |
"firstname": "Christine", | |
"lastname": "Fink", | |
"line1": "Bleibtreustra\u00dfe", | |
"line2": "2a", | |
"postcode": "13588", | |
"city": "Berlin", | |
"country_code": "DE" | |
} | |
], | |
"communications": [ | |
{ | |
"type": "phone", | |
"value": "030 45 55 57" | |
}, | |
{ | |
"type": "phone", | |
"value": "078 59 20 84" | |
}, | |
{ | |
"type": "email", | |
"value": "[email protected]" | |
} | |
], | |
"data": [ | |
{ | |
"type": "has cat", | |
"value": true | |
}, | |
{ | |
"type": "like pizza", | |
"value": true | |
}, | |
{ | |
"type": "favorite color", | |
"value": "red" | |
} | |
], | |
"actions": [ | |
{ | |
"type": "Add to wishlist", | |
"date": "2016-03-02", | |
"project": "https://www.posylka.de", | |
"title": "Subscribe to german newsletter version", | |
"external_id": "98986756" | |
}, | |
{ | |
"type": "Add to wishlist", | |
"date": "2014-11-03 10:12:43", | |
"project": "https://www.posylka.de", | |
"title": "Add products to cart from category", | |
"external_id": "3456", | |
"data": { | |
"use_session": false, | |
"cookies": { | |
"cookie_1": "value_1", | |
"cookie_2": "value_2" | |
} | |
}, | |
"purchased_products": [ | |
{ | |
"sku": "08151688", | |
"name": "Multivarka REDMOND RMC-M4510", | |
"category_tree": "\/Multikocher\/REDMOND", | |
"purchase_price": 109.9, | |
"price": 105.9, | |
"quantity": 1 | |
} | |
] | |
}, | |
{ | |
"type": "Add to cart", | |
"date": "2015-10-11", | |
"project": "https://www.posylka.de", | |
"title": "Add products to wishlist from account", | |
"external_id": "235445", | |
"data": { | |
"use_session": true, | |
"session_id": "098f6bcd4621d373cade4e832627b4f6" | |
}, | |
"purchased_products": [ | |
{ | |
"sku": "08140293", | |
"name": "Anti-Age Handcreme", | |
"category_tree": "\/Beauty\/Markenkosmetik\/Samtweiche H\u00e4nde", | |
"purchase_price": 2.99, | |
"price": 2.5, | |
"quantity": 3 | |
}, | |
{ | |
"sku": "08151688", | |
"name": "Multivarka REDMOND RMC-M4510", | |
"category_tree": "\/Multikocher\/REDMOND", | |
"purchase_price": 109.9, | |
"price": 105.9, | |
"quantity": 1 | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment