getContacts
TEST request - https://in.bisnode.ee/rest_dev/getContacts
getContacts
POST
https://in.bisnode.ee/rest/getContacts
Needed Headers: Content-type: application/json
This endpoint allows you to get company contacts such as:
* Address
* WWW
* E-mail
* Telephone
* FAX
Example Curl request:
curl -X POST -k -H 'Content-type: application/json' -i 'https://in.bisnode.ee/rest/getContacts' --data '{
"token": "0c725874e737c8195de547f67692d8b976726561",
"reg_code": "10117826",
"country": "EST",
"language": "en"
}'
Query Parameters
language
string
2-letter language code. Must be "en", "et" or "ru". Default is "en".
token
string
Your 'access token' (API key).
reg_code
string
Company registration number.
country
string
3-letter country code "EST" or "LVA". Default is "EST".
[
{
"type": "Address",
"type_code": "ADDRESS",
"content": "Endla tn 15, 10122, Tallinn, Harju maakond, Eesti Vabariik"
},
{
"type": "Internet address (www)",
"type_code": "WWW",
"content": "www.bisnode.ee"
},
{
"type": "E-mail address",
"type_code": "EMAIL",
"content": "[email protected]"
},
{
"type": "Telephone",
"type_code": "TEL",
"content": "+372 641 4910"
},
{
"type": "Fax",
"type_code": "FAX",
"content": "+372 641 4910"
}
]
Last updated
Was this helpful?