Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "version": "{{version}}",
// "actions": [
// {
// "action": "addAddress",
// "address": {
// "id": "exampleAddress",
// "key": "exampleKey",
// "title": "My Address",
// "salutation": "Mr.",
// "firstName": "Example",
// "lastName": "Person",
// "streetName": "Examplary Street",
// "streetNumber": "4711",
// "additionalStreetInfo": "Backhouse",
// "postalCode": "80933",
// "city": "Exemplary City",
// "region": "Exemplary Region",
// "state": "Exemplary State",
// "country": "DE",
// "company": "My Company Name",
// "department": "Sales",
// "building": "Hightower 1",
// "apartment": "247",
// "pOBox": "2471",
// "phone": "+49 89 12345678",
// "mobile": "+49 171 2345678",
// "email": "mail@mail.com",
// "fax": "+49 89 12345679",
// "additionalAddressInfo": "no additional Info",
// "externalId": "Information not needed"
// }
// }
// ]
// }
let json = CkoJsonObject()!
json.update("version", value: "{{version}}")
json.update("actions[0].action", value: "addAddress")
json.update("actions[0].address.id", value: "exampleAddress")
json.update("actions[0].address.key", value: "exampleKey")
json.update("actions[0].address.title", value: "My Address")
json.update("actions[0].address.salutation", value: "Mr.")
json.update("actions[0].address.firstName", value: "Example")
json.update("actions[0].address.lastName", value: "Person")
json.update("actions[0].address.streetName", value: "Examplary Street")
json.update("actions[0].address.streetNumber", value: "4711")
json.update("actions[0].address.additionalStreetInfo", value: "Backhouse")
json.update("actions[0].address.postalCode", value: "80933")
json.update("actions[0].address.city", value: "Exemplary City")
json.update("actions[0].address.region", value: "Exemplary Region")
json.update("actions[0].address.state", value: "Exemplary State")
json.update("actions[0].address.country", value: "DE")
json.update("actions[0].address.company", value: "My Company Name")
json.update("actions[0].address.department", value: "Sales")
json.update("actions[0].address.building", value: "Hightower 1")
json.update("actions[0].address.apartment", value: "247")
json.update("actions[0].address.pOBox", value: "2471")
json.update("actions[0].address.phone", value: "+49 89 12345678")
json.update("actions[0].address.mobile", value: "+49 171 2345678")
json.update("actions[0].address.email", value: "mail@mail.com")
json.update("actions[0].address.fax", value: "+49 89 12345679")
json.update("actions[0].address.additionalAddressInfo", value: "no additional Info")
json.update("actions[0].address.externalId", value: "Information not needed")
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
http.setRequestHeader("Content-Type", value: "application/json")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("post", url: "https://domain.com/{{project-key}}/in-store/key={{store-key}}/customers/{{customer-id}}", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -X post
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-d '{
"version": {{customer-version}},
"actions": [
{
"action" : "addAddress",
"address" : {
"id" : "exampleAddress",
"key" : "exampleKey",
"title" : "My Address",
"salutation" : "Mr.",
"firstName" : "Example",
"lastName" : "Person",
"streetName" : "Examplary Street",
"streetNumber" : "4711",
"additionalStreetInfo" : "Backhouse",
"postalCode" : "80933",
"city" : "Exemplary City",
"region" : "Exemplary Region",
"state" : "Exemplary State",
"country" : "DE",
"company" : "My Company Name",
"department" : "Sales",
"building" : "Hightower 1",
"apartment" : "247",
"pOBox" : "2471",
"phone" : "+49 89 12345678",
"mobile" : "+49 171 2345678",
"email" : "mail@mail.com",
"fax" : "+49 89 12345679",
"additionalAddressInfo" : "no additional Info",
"externalId" : "Information not needed"
}
}
]
}'
https://domain.com/{{project-key}}/in-store/key={{store-key}}/customers/{{customer-id}}
Postman Collection Item JSON
{
"name": "AddAddress",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"tests[\"Status code \" + responseCode.code] = responseCode.code === 200 || responseCode.code === 201;",
"var data = JSON.parse(responseBody);",
"if(data.results && data.results[0] && data.results[0].id && data.results[0].version){",
" pm.environment.set(\"customer-id\", data.results[0].id); ",
" pm.environment.set(\"customer-version\", data.results[0].version);",
"}",
"if(data.results && data.results[0] && data.results[0].key){",
" pm.environment.set(\"customer-key\", data.results[0].key); ",
"}",
"if(data.version){",
" pm.environment.set(\"customer-version\", data.version);",
"}",
"if(data.id){",
" pm.environment.set(\"customer-id\", data.id); ",
"}",
"if(data.key){",
" pm.environment.set(\"customer-key\", data.key);",
"}",
""
]
}
}
],
"request": {
"auth": {
"type": "oauth2",
"oauth2": {
"accessToken": "{{ctp_access_token}}",
"addTokenTo": "header",
"tokenType": "Bearer"
}
},
"method": "post",
"body": {
"mode": "raw",
"raw": "{\n \"version\": {{customer-version}},\n \"actions\": [\n {\n \"action\" : \"addAddress\",\n \"address\" : {\n \"id\" : \"exampleAddress\",\n \"key\" : \"exampleKey\",\n \"title\" : \"My Address\",\n \"salutation\" : \"Mr.\",\n \"firstName\" : \"Example\",\n \"lastName\" : \"Person\",\n \"streetName\" : \"Examplary Street\",\n \"streetNumber\" : \"4711\",\n \"additionalStreetInfo\" : \"Backhouse\",\n \"postalCode\" : \"80933\",\n \"city\" : \"Exemplary City\",\n \"region\" : \"Exemplary Region\",\n \"state\" : \"Exemplary State\",\n \"country\" : \"DE\",\n \"company\" : \"My Company Name\",\n \"department\" : \"Sales\",\n \"building\" : \"Hightower 1\",\n \"apartment\" : \"247\",\n \"pOBox\" : \"2471\",\n \"phone\" : \"+49 89 12345678\",\n \"mobile\" : \"+49 171 2345678\",\n \"email\" : \"mail@mail.com\",\n \"fax\" : \"+49 89 12345679\",\n \"additionalAddressInfo\" : \"no additional Info\",\n \"externalId\" : \"Information not needed\"\n }\n }\n ]\n}"
},
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{host}}/{{project-key}}/in-store/key={{store-key}}/customers/{{customer-id}}",
"host": [
"{{host}}"
],
"path": [
"{{project-key}}",
"in-store",
"key={{store-key}}",
"customers",
"{{customer-id}}"
],
"query": [
{
"key": "expand",
"value": "",
"equals": true,
"disabled": true
}
]
},
"description": "Updates a customer in the store specified by {storeKey}. The {storeKey} path parameter maps to a Store's key.\nIf the customer exists in the commercetools project but the stores field references a different store,\nthis method returns a ResourceNotFound error.\n"
},
"response": [
]
}