SQL Server
SQL Server
Cerved API Entity Contacts
See more Cerved Examples
The service returns the list of contacts of a Subject (legal entities) identified by "id_soggetto"Chilkat SQL Server Downloads
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
DECLARE @success int
SELECT @success = 0
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
-- Implements the following CURL command:
-- curl -X GET \
-- https://api.cerved.com/cervedApi/v1/entityProfile/contacts?id_soggetto=12345678 \
-- -H 'accept: application/json' \
-- -H 'apikey: ********************************'
-- Use the following online tool to generate HTTP code from a CURL command
-- Convert a cURL Command to HTTP Source Code
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'accept', 'application/json'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'apikey', '********************************'
DECLARE @sbResponseBody int
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT
EXEC sp_OAMethod @http, 'QuickGetSb', @success OUT, 'https://api.cerved.com/cervedApi/v1/entityProfile/contacts?id_soggetto=12345678', @sbResponseBody
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @sbResponseBody
RETURN
END
DECLARE @jResp int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jResp OUT
EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
EXEC sp_OASetProperty @jResp, 'EmitCompact', 0
PRINT 'Response Body:'
EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
PRINT @sTmp0
DECLARE @respStatusCode int
EXEC sp_OAGetProperty @http, 'LastStatus', @respStatusCode OUT
PRINT 'Response Status Code = ' + @respStatusCode
IF @respStatusCode >= 400
BEGIN
PRINT 'Response Header:'
EXEC sp_OAGetProperty @http, 'LastHeader', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
RETURN
END
-- Sample JSON response:
-- (Sample code for parsing the JSON response is shown below)
-- {
-- "indirizzi_email": [
-- {
-- "email": "string",
-- "categoria": "string"
-- }
-- ],
-- "indirizzi_email_certificate": [
-- {
-- "email": "string",
-- "categoria": "string"
-- }
-- ],
-- "telefoni": [
-- {
-- "fonte": "string",
-- "sede": "string",
-- "numero": "string",
-- "uso": "string"
-- }
-- ],
-- "siti_web": [
-- {
-- "url": "string",
-- "tipo": "string"
-- }
-- ]
-- }
-- Sample code for parsing the JSON response...
-- Use the following online tool to generate parsing code from sample JSON:
-- Generate Parsing Code from JSON
DECLARE @email nvarchar(4000)
DECLARE @categoria nvarchar(4000)
DECLARE @fonte nvarchar(4000)
DECLARE @sede nvarchar(4000)
DECLARE @numero nvarchar(4000)
DECLARE @uso nvarchar(4000)
DECLARE @url nvarchar(4000)
DECLARE @tipo nvarchar(4000)
DECLARE @i int
SELECT @i = 0
DECLARE @count_i int
EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'indirizzi_email'
WHILE @i < @count_i
BEGIN
EXEC sp_OASetProperty @jResp, 'I', @i
EXEC sp_OAMethod @jResp, 'StringOf', @email OUT, 'indirizzi_email[i].email'
EXEC sp_OAMethod @jResp, 'StringOf', @categoria OUT, 'indirizzi_email[i].categoria'
SELECT @i = @i + 1
END
SELECT @i = 0
EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'indirizzi_email_certificate'
WHILE @i < @count_i
BEGIN
EXEC sp_OASetProperty @jResp, 'I', @i
EXEC sp_OAMethod @jResp, 'StringOf', @email OUT, 'indirizzi_email_certificate[i].email'
EXEC sp_OAMethod @jResp, 'StringOf', @categoria OUT, 'indirizzi_email_certificate[i].categoria'
SELECT @i = @i + 1
END
SELECT @i = 0
EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'telefoni'
WHILE @i < @count_i
BEGIN
EXEC sp_OASetProperty @jResp, 'I', @i
EXEC sp_OAMethod @jResp, 'StringOf', @fonte OUT, 'telefoni[i].fonte'
EXEC sp_OAMethod @jResp, 'StringOf', @sede OUT, 'telefoni[i].sede'
EXEC sp_OAMethod @jResp, 'StringOf', @numero OUT, 'telefoni[i].numero'
EXEC sp_OAMethod @jResp, 'StringOf', @uso OUT, 'telefoni[i].uso'
SELECT @i = @i + 1
END
SELECT @i = 0
EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'siti_web'
WHILE @i < @count_i
BEGIN
EXEC sp_OASetProperty @jResp, 'I', @i
EXEC sp_OAMethod @jResp, 'StringOf', @url OUT, 'siti_web[i].url'
EXEC sp_OAMethod @jResp, 'StringOf', @tipo OUT, 'siti_web[i].tipo'
SELECT @i = @i + 1
END
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
END
GO