Chilkat Online Tools

Swift / Bond APIs / answer kba

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.

    // {
    //   "kba_responses": [
    //     {
    //       "question_id": "1",
    //       "choice_id": "1"
    //     },
    //     {
    //       "question_id": "2",
    //       "choice_id": "2"
    //     },
    //     {
    //       "question_id": "3",
    //       "choice_id": "3"
    //     },
    //     {
    //       "question_id": "4",
    //       "choice_id": "4"
    //     }
    //   ]
    // }

    let json = CkoJsonObject()
    json.UpdateString("kba_responses[0].question_id", value: "1")
    json.UpdateString("kba_responses[0].choice_id", value: "1")
    json.UpdateString("kba_responses[1].question_id", value: "2")
    json.UpdateString("kba_responses[1].choice_id", value: "2")
    json.UpdateString("kba_responses[2].question_id", value: "3")
    json.UpdateString("kba_responses[2].choice_id", value: "3")
    json.UpdateString("kba_responses[3].question_id", value: "4")
    json.UpdateString("kba_responses[3].choice_id", value: "4")

    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/{{customer_id}}/verification-kba", 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 '{
    "kba_responses": [ 
        {
        "question_id": "1",
        "choice_id": "1"
        },
        {
        "question_id": "2",
        "choice_id": "2"
        },
        {
        "question_id": "3",
        "choice_id": "3"
        },
        {
        "question_id": "4",
        "choice_id": "4"
        }
    ]
}'
https://{{environment}}.bond.tech/api/v0/customers/{{customer_id}}/verification-kba

Postman Collection Item JSON

{
  "name": "answer kba",
  "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    \"kba_responses\": [ \n        {\n        \"question_id\": \"1\",\n        \"choice_id\": \"1\"\n        },\n        {\n        \"question_id\": \"2\",\n        \"choice_id\": \"2\"\n        },\n        {\n        \"question_id\": \"3\",\n        \"choice_id\": \"3\"\n        },\n        {\n        \"question_id\": \"4\",\n        \"choice_id\": \"4\"\n        }\n    ]\n}"
    },
    "url": {
      "raw": "https://{{environment}}.bond.tech/api/v0/customers/{{customer_id}}/verification-kba",
      "protocol": "https",
      "host": [
        "{{environment}}",
        "bond",
        "tech"
      ],
      "path": [
        "api",
        "v0",
        "customers",
        "{{customer_id}}",
        "verification-kba"
      ]
    },
    "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    \"kba_responses\": [ \n        {\n        \"question_id\": \"1\",\n        \"choice_id\": \"1\"\n        },\n        {\n        \"question_id\": \"2\",\n        \"choice_id\": \"2\"\n        },\n        {\n        \"question_id\": \"3\",\n        \"choice_id\": \"3\"\n        },\n        {\n        \"question_id\": \"4\",\n        \"choice_id\": \"4\"\n        }\n    ]\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://{{environment}}.bond.tech/api/v0/customers/:customer_id/verification-kyc",
          "protocol": "https",
          "host": [
            "{{environment}}",
            "bond",
            "tech"
          ],
          "path": [
            "api",
            "v0",
            "customers",
            ":customer_id",
            "verification-kyc"
          ],
          "variable": [
            {
              "key": "customer_id",
              "value": "{{customer_id}}"
            }
          ]
        }
      },
      "_postman_previewlanguage": "json",
      "header": null,
      "cookie": [
      ],
      "body": "{\n    \"customer_id\": \"2df10ec1-130f-41bb-b0cf-f3af48350eb7\",\n    \"kyc_status\": \"initialized\"\n}"
    }
  ]
}