Chilkat Online Tools

Swift / Bond APIs / create customer

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.

    // {
    //   "brand_person_id": "832be8a2-7f5e-4d92-b1dd-b5923cc57fe7",
    //   "dob": "1925-10-23",
    //   "first_name": "James",
    //   "middle_name": "William",
    //   "last_name": "Bond",
    //   "addresses": [
    //     {
    //       "address_type": "PHYSICAL",
    //       "street": "123 Market St",
    //       "city": "San Francisco",
    //       "state": "CA",
    //       "zip_code": "12345-1111",
    //       "country": "US",
    //       "is_primary": true
    //     }
    //   ]
    // }

    let json = CkoJsonObject()
    json.UpdateString("brand_person_id", value: "832be8a2-7f5e-4d92-b1dd-b5923cc57fe7")
    json.UpdateString("dob", value: "1925-10-23")
    json.UpdateString("first_name", value: "James")
    json.UpdateString("middle_name", value: "William")
    json.UpdateString("last_name", value: "Bond")
    json.UpdateString("addresses[0].address_type", value: "PHYSICAL")
    json.UpdateString("addresses[0].street", value: "123 Market St")
    json.UpdateString("addresses[0].city", value: "San Francisco")
    json.UpdateString("addresses[0].state", value: "CA")
    json.UpdateString("addresses[0].zip_code", value: "12345-1111")
    json.UpdateString("addresses[0].country", value: "US")
    json.UpdateBool("addresses[0].is_primary", value: true)

    http.SetRequestHeader("Content-Type", value: "application/json")
    http.SetRequestHeader("Authorization", value: "{{authorization}}")
    http.SetRequestHeader("Identity", value: "{{identity}}")

    var resp: CkoHttpResponse? = http.PostJson3("https://{{environment}}.bond.tech/api/v0/customers", contentType: "application/json", json: json)
    if http.LastMethodSuccess == false {
        print("\(http.LastErrorText)")
        return
    }

    print("\(resp!.StatusCode.intValue)")
    print("\(resp!.BodyStr)")
    resp = nil

}

Curl Command

curl -X POST
	-H "Content-Type: application/json"
	-H "Authorization: {{authorization}}"
	-H "Identity: {{identity}}"
	-d '{
    "brand_person_id": "832be8a2-7f5e-4d92-b1dd-b5923cc57fe7",
    "dob": "1925-10-23",
    "first_name": "James",
    "middle_name":"William",
    "last_name": "Bond",
    "addresses": [
        {
            "address_type": "PHYSICAL",
            "street": "123 Market St",
            "city": "San Francisco",
            "state": "CA",
            "zip_code": "12345-1111",
            "country": "US",
            "is_primary": true
        }
    ]
}'
https://{{environment}}.bond.tech/api/v0/customers

Postman Collection Item JSON

{
  "name": "create customer",
  "event": [
    {
      "listen": "test",
      "script": {
        "exec": [
          "var jsonData = pm.response.json();",
          "pm.collectionVariables.set(\"customer_id\", jsonData.customer_id)"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "type": "text",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "type": "text",
        "value": "{{authorization}}"
      },
      {
        "key": "Identity",
        "type": "text",
        "value": "{{identity}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"brand_person_id\": \"832be8a2-7f5e-4d92-b1dd-b5923cc57fe7\",\n    \"dob\": \"1925-10-23\",\n    \"first_name\": \"James\",\n    \"middle_name\":\"William\",\n    \"last_name\": \"Bond\",\n    \"addresses\": [\n        {\n            \"address_type\": \"PHYSICAL\",\n            \"street\": \"123 Market St\",\n            \"city\": \"San Francisco\",\n            \"state\": \"CA\",\n            \"zip_code\": \"12345-1111\",\n            \"country\": \"US\",\n            \"is_primary\": true\n        }\n    ]\n}"
    },
    "url": {
      "raw": "https://{{environment}}.bond.tech/api/v0/customers",
      "protocol": "https",
      "host": [
        "{{environment}}",
        "bond",
        "tech"
      ],
      "path": [
        "api",
        "v0",
        "customers"
      ]
    },
    "description": "Add Card financial Core"
  },
  "response": [
    {
      "name": "example",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "name": "Content-Type",
            "value": "application/json",
            "type": "text"
          },
          {
            "key": "Authorization",
            "type": "text",
            "value": "{{authorization}}"
          },
          {
            "key": "Identity",
            "type": "text",
            "value": "{{identity}}"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"brand_person_id\": \"2f55fd85-f411-491e-86a2-558336d6c2a5\",\n    \"dob\": \"1992-12-01\",\n    \"first_name\": \"Johnny\",\n    \"middle_name\":\"William\",\n    \"last_name\": \"Carson\",\n    \"addresses\": [\n        {\n            \"address_type\": \"PHYSICAL\",\n            \"street\": \"123 Market St\",\n            \"city\": \"San Fransico\",\n            \"state\": \"CA\",\n            \"zip_code\": \"12345-1111\",\n            \"country\": \"US\",\n            \"is_primary\": true\n        }\n    ]\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://{{environment}}.bond.tech/api/v0/customers",
          "protocol": "https",
          "host": [
            "{{environment}}",
            "bond",
            "tech"
          ],
          "path": [
            "api",
            "v0",
            "customers"
          ]
        }
      },
      "_postman_previewlanguage": null,
      "header": null,
      "cookie": [
      ],
      "body": null
    }
  ]
}