SQL Server / Commercetools / ChangeAddress
Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
-- 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": "changeAddress",
-- "addressId": "{{addressId}}",
-- "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"
-- }
-- }
-- ]
-- }
DECLARE @json int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'version', '{{version}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].action', 'changeAddress'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].addressId', '{{addressId}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.id', 'exampleAddress'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.key', 'exampleKey'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.title', 'My Address'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.salutation', 'Mr.'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.firstName', 'Example'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.lastName', 'Person'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.streetName', 'Examplary Street'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.streetNumber', '4711'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.additionalStreetInfo', 'Backhouse'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.postalCode', '80933'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.city', 'Exemplary City'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.region', 'Exemplary Region'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.state', 'Exemplary State'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.country', 'DE'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.company', 'My Company Name'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.department', 'Sales'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.building', 'Hightower 1'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.apartment', '247'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.pOBox', '2471'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.phone', '+49 89 12345678'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.mobile', '+49 171 2345678'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.email', 'mail@mail.com'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.fax', '+49 89 12345679'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.additionalAddressInfo', 'no additional Info'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'actions[0].address.externalId', 'Information not needed'
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
DECLARE @sbRequestBody int
-- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbRequestBody OUT
EXEC sp_OAMethod @json, 'EmitSb', @success OUT, @sbRequestBody
DECLARE @resp int
EXEC sp_OAMethod @http, 'PTextSb', @resp OUT, 'post', 'https://domain.com/{{project-key}}/customers/{{customer-id}}', @sbRequestBody, 'utf-8', 'application/json', 0, 0
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbRequestBody
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbRequestBody
END
GO
Curl Command
curl -X post
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-d '{
"version": {{customer-version}},
"actions": [
{
"action" : "changeAddress",
"addressId" : "{{addressId}}",
"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}}/customers/{{customer-id}}
Postman Collection Item JSON
{
"name": "ChangeAddress",
"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\" : \"changeAddress\",\n \"addressId\" : \"{{addressId}}\",\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}}/customers/{{customer-id}}",
"host": [
"{{host}}"
],
"path": [
"{{project-key}}",
"customers",
"{{customer-id}}"
],
"query": [
{
"key": "expand",
"value": "",
"equals": true,
"disabled": true
}
]
},
"description": "post Customers"
},
"response": [
]
}