GET api/Epci/{id}
Looks up some data by SIREN
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The SIREN af the enterprise |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Epci| Name | Description | Type | Additional information |
|---|---|---|---|
| SIREN |
Enterprise SIREN number |
string |
None. |
| EPCI |
Enterprise EPCI name |
string |
None. |
| COG |
Enterprise COG |
string |
None. |
| COMMUNE |
Enterprise city |
string |
None. |
| DENOMINATION_SOCIALE |
Enterprise Name |
string |
None. |
| NOM |
Enterprise owner last name |
string |
None. |
| PRENOM |
Enterprise owner first name |
string |
None. |
| NUMERO_VOIE |
Enterprise road number |
string |
None. |
| INDICE_REPETITION |
Enterprise repetition index |
string |
None. |
| TYPE_VOIE |
Enterprise road type |
string |
None. |
| ADRESSE |
Enterprise adresse |
string |
None. |
| ADRESSE_COMPLEMENT |
Enterprise additional address |
string |
None. |
| CODE_POSTAL |
Enterprise postal code |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"SIREN": "sample string 1",
"EPCI": "sample string 2",
"COG": "sample string 3",
"COMMUNE": "sample string 4",
"DENOMINATION_SOCIALE": "sample string 5",
"NOM": "sample string 6",
"PRENOM": "sample string 7",
"NUMERO_VOIE": "sample string 8",
"INDICE_REPETITION": "sample string 9",
"TYPE_VOIE": "sample string 10",
"ADRESSE": "sample string 11",
"ADRESSE_COMPLEMENT": "sample string 12",
"CODE_POSTAL": "sample string 13"
}
application/xml, text/xml
Sample:
<Epci xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <ADRESSE>sample string 11</ADRESSE> <ADRESSE_COMPLEMENT>sample string 12</ADRESSE_COMPLEMENT> <CODE_POSTAL>sample string 13</CODE_POSTAL> <COG>sample string 3</COG> <COMMUNE>sample string 4</COMMUNE> <DENOMINATION_SOCIALE>sample string 5</DENOMINATION_SOCIALE> <EPCI>sample string 2</EPCI> <INDICE_REPETITION>sample string 9</INDICE_REPETITION> <NOM>sample string 6</NOM> <NUMERO_VOIE>sample string 8</NUMERO_VOIE> <PRENOM>sample string 7</PRENOM> <SIREN>sample string 1</SIREN> <TYPE_VOIE>sample string 10</TYPE_VOIE> </Epci>