Swift
Swift
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 Swift Downloads
func chilkatTest() {
var success: Bool = false
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
// 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
http.setRequestHeader(name: "accept", value: "application/json")
http.setRequestHeader(name: "apikey", value: "********************************")
let sbResponseBody = CkoStringBuilder()!
success = http.quickGetSb(url: "https://api.cerved.com/cervedApi/v1/entityProfile/contacts?id_soggetto=12345678", sbContent: sbResponseBody)
if success == false {
print("\(http.lastErrorText!)")
return
}
let jResp = CkoJsonObject()!
jResp.loadSb(sb: sbResponseBody)
jResp.emitCompact = false
print("Response Body:")
print("\(jResp.emit()!)")
var respStatusCode: Int = http.lastStatus.intValue
print("Response Status Code = \(respStatusCode)")
if respStatusCode >= 400 {
print("Response Header:")
print("\(http.lastHeader!)")
print("Failed.")
return
}
// 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
var email: String?
var categoria: String?
var fonte: String?
var sede: String?
var numero: String?
var uso: String?
var url: String?
var tipo: String?
var i: Int = 0
var count_i: Int = jResp.size(ofArray: "indirizzi_email").intValue
while i < count_i {
jResp.i = i
email = jResp.string(of: "indirizzi_email[i].email")
categoria = jResp.string(of: "indirizzi_email[i].categoria")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "indirizzi_email_certificate").intValue
while i < count_i {
jResp.i = i
email = jResp.string(of: "indirizzi_email_certificate[i].email")
categoria = jResp.string(of: "indirizzi_email_certificate[i].categoria")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "telefoni").intValue
while i < count_i {
jResp.i = i
fonte = jResp.string(of: "telefoni[i].fonte")
sede = jResp.string(of: "telefoni[i].sede")
numero = jResp.string(of: "telefoni[i].numero")
uso = jResp.string(of: "telefoni[i].uso")
i = i + 1
}
i = 0
count_i = jResp.size(ofArray: "siti_web").intValue
while i < count_i {
jResp.i = i
url = jResp.string(of: "siti_web[i].url")
tipo = jResp.string(of: "siti_web[i].tipo")
i = i + 1
}
}