DataFlex
DataFlex
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 DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoHttp
Variant vSbResponseBody
Handle hoSbResponseBody
Handle hoJResp
Integer iRespStatusCode
String sEmail
String sCategoria
String sFonte
String sSede
String sNumero
String sUso
String sUrl
String sTipo
Integer i
Integer iCount_i
String sTemp1
Move False To iSuccess
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
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
Send ComSetRequestHeader To hoHttp "accept" "application/json"
Send ComSetRequestHeader To hoHttp "apikey" "********************************"
Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
Send CreateComObject of hoSbResponseBody
End
Get pvComObject of hoSbResponseBody to vSbResponseBody
Get ComQuickGetSb Of hoHttp "https://api.cerved.com/cervedApi/v1/entityProfile/contacts?id_soggetto=12345678" vSbResponseBody To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
If (Not(IsComObjectCreated(hoJResp))) Begin
Send CreateComObject of hoJResp
End
Get pvComObject of hoSbResponseBody to vSbResponseBody
Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
Set ComEmitCompact Of hoJResp To False
Showln "Response Body:"
Get ComEmit Of hoJResp To sTemp1
Showln sTemp1
Get ComLastStatus Of hoHttp To iRespStatusCode
Showln "Response Status Code = " iRespStatusCode
If (iRespStatusCode >= 400) Begin
Showln "Response Header:"
Get ComLastHeader Of hoHttp To sTemp1
Showln sTemp1
Showln "Failed."
Procedure_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
Move 0 To i
Get ComSizeOfArray Of hoJResp "indirizzi_email" To iCount_i
While (i < iCount_i)
Set ComI Of hoJResp To i
Get ComStringOf Of hoJResp "indirizzi_email[i].email" To sEmail
Get ComStringOf Of hoJResp "indirizzi_email[i].categoria" To sCategoria
Move (i + 1) To i
Loop
Move 0 To i
Get ComSizeOfArray Of hoJResp "indirizzi_email_certificate" To iCount_i
While (i < iCount_i)
Set ComI Of hoJResp To i
Get ComStringOf Of hoJResp "indirizzi_email_certificate[i].email" To sEmail
Get ComStringOf Of hoJResp "indirizzi_email_certificate[i].categoria" To sCategoria
Move (i + 1) To i
Loop
Move 0 To i
Get ComSizeOfArray Of hoJResp "telefoni" To iCount_i
While (i < iCount_i)
Set ComI Of hoJResp To i
Get ComStringOf Of hoJResp "telefoni[i].fonte" To sFonte
Get ComStringOf Of hoJResp "telefoni[i].sede" To sSede
Get ComStringOf Of hoJResp "telefoni[i].numero" To sNumero
Get ComStringOf Of hoJResp "telefoni[i].uso" To sUso
Move (i + 1) To i
Loop
Move 0 To i
Get ComSizeOfArray Of hoJResp "siti_web" To iCount_i
While (i < iCount_i)
Set ComI Of hoJResp To i
Get ComStringOf Of hoJResp "siti_web[i].url" To sUrl
Get ComStringOf Of hoJResp "siti_web[i].tipo" To sTipo
Move (i + 1) To i
Loop
End_Procedure