Chilkat Online Tools

SQL Server / Bond APIs / 2b. get kyc

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

    DECLARE @queryParams int
    -- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
    EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @queryParams OUT

    EXEC sp_OAMethod @queryParams, 'UpdateString', @success OUT, 'program_id', '{{program_id}}'

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Authorization', '{{authorization}}'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Identity', '{{identity}}'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'QuickRequestParams', @resp OUT, 'GET', 'https://{{environment}}.bond.tech/api/v0/customers/{{customer_id}}/verification-kyc', @queryParams
    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 @queryParams
        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 @queryParams


END
GO

Curl Command

curl -G -d "program_id=%7B%7Bprogram_id%7D%7D"
	-H "Content-Type: application/json"
	-H "Authorization: {{authorization}}"
	-H "Identity: {{identity}}"
https://{{environment}}.bond.tech/api/v0/customers/{{customer_id}}/verification-kyc

Postman Collection Item JSON

{
  "name": "2b. get kyc",
  "protocolProfileBehavior": {
    "disableBodyPruning": true
  },
  "request": {
    "method": "GET",
    "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": ""
    },
    "url": {
      "raw": "https://{{environment}}.bond.tech/api/v0/customers/{{customer_id}}/verification-kyc?program_id={{program_id}}",
      "protocol": "https",
      "host": [
        "{{environment}}",
        "bond",
        "tech"
      ],
      "path": [
        "api",
        "v0",
        "customers",
        "{{customer_id}}",
        "verification-kyc"
      ],
      "query": [
        {
          "key": "program_id",
          "value": "{{program_id}}"
        }
      ]
    },
    "description": "Add Card financial Core"
  },
  "response": [
    {
      "name": "example",
      "originalRequest": {
        "method": "GET",
        "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": ""
        },
        "url": {
          "raw": "https://{{environment}}.bond.tech/api/v0/customers/{{customer_id}}/verification-kyc?program_id={{program_id}}",
          "protocol": "https",
          "host": [
            "{{environment}}",
            "bond",
            "tech"
          ],
          "path": [
            "api",
            "v0",
            "customers",
            "{{customer_id}}",
            "verification-kyc"
          ],
          "query": [
            {
              "key": "program_id",
              "value": "{{program_id}}"
            }
          ]
        }
      },
      "_postman_previewlanguage": "json",
      "header": null,
      "cookie": [
      ],
      "body": "{\n    \"customer_id\": \"d856bf10-d4a6-4153-b8f8-2b93072dd8da\",\n    \"brand_id\": \"ce027c9c-39c6-47f4-a12d-abb543f7cf63\",\n    \"kyc_status\": \"passed\",\n    \"results\": {\n        \"ofac\": \"passed\",\n        \"bureau\": \"passed\",\n        \"email\": \"passed\",\n        \"ip\": \"passed\",\n        \"mobile\": \"passed\"\n    },\n    \"health\": {\n        \"overall\": \"SERVICE_GOOD\",\n        \"ofac\": \"SERVICE_GOOD\",\n        \"bureau\": \"SERVICE_GOOD\",\n        \"email\": \"SERVICE_GOOD\",\n        \"ip\": \"SERVICE_GOOD\",\n        \"mobile\": \"SERVICE_GOOD\"\n    },\n    \"info\": {\n        \"ofac\": {\n            \"name_matched\": false,\n            \"dob_matched\": false\n        },\n        \"bureau\": {\n            \"application_status\": \"Pass\"\n        },\n        \"phone\": {\n            \"first_name_match\": 100,\n            \"last_name_match\": 100,\n            \"address_match\": null,\n            \"service_status\": \"ACTIVE\",\n            \"service_type\": \"CONTRACT\",\n            \"service_duration\": \"UNKNOWN\",\n            \"service_ported_duration\": \"NONE\"\n        }\n    }\n}"
    }
  ]
}