POST api/siren/international/recherchersoc
Permet de réaliser la recherche d'une société étrangère
Request Information
Header Description
Key | Value | Information |
---|---|---|
Authorization | Bearer access_token | L'access_token se récupére via la métode d'authentification. |
Body Parameters
sat.WebServices.Models.Siren.Inter.RechercheRequestInterName | Description | Type | Additional information |
---|---|---|---|
Rsoc |
Raison sociale recherchée |
string |
Required |
Cp |
Code postal ou département |
string |
Required |
Pays |
Code pays (ISO2, ISO3, En clair) ("FR", "FRA", "France") |
string |
None. |
AvecFermes |
Renvoi ou non les établissements fermés. 0 (non) par défaut. |
string |
None. |
Cnt |
Nombre de résultat retourné souhaité |
string |
Required |
Request Formats
application/json, text/json
{ "Rsoc": "sample string 1", "Cp": "sample string 2", "Pays": "sample string 3", "AvecFermes": "sample string 4", "Cnt": "sample string 5" }
application/xml, text/xml
<RechercheRequestInter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Rsoc>sample string 1</Rsoc> <Cp>sample string 2</Cp> <Pays>sample string 3</Pays> <AvecFermes>sample string 4</AvecFermes> <Cnt>sample string 5</Cnt> </RechercheRequestInter>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
sat.WebServices.Models.Siren.Inter.RechercheResponseInterName | Description | Type | Additional information |
---|---|---|---|
Message |
Message lié au code retour |
string |
None. |
Code |
Code retour |
string |
None. |
Societes |
Liste de sociétés |
Collection of sat.WebServices.Models.Siren.Inter.SocieteInter |
None. |
Response Formats
application/json, text/json
{ "Message": "sample string 1", "Code": "sample string 2", "Societes": [ { "NATIONALID": "sample string 1", "RSOC": "sample string 2", "ENSEIGNE": "sample string 3", "CADRS": "sample string 4", "ADRS": "sample string 5", "CP": "sample string 6", "VILLE": "sample string 7", "PAYS": "sample string 8", "DCRET": "sample string 9", "DEPET": "sample string 10", "SICCODE": "sample string 11", "INDUSTRY": "sample string 12", "SALESEUR": "sample string 13", "EMPLOYEESNUMBER": "sample string 14", "ISACTIVE": "sample string 15", "DUNSNUMBER": "sample string 16" }, { "NATIONALID": "sample string 1", "RSOC": "sample string 2", "ENSEIGNE": "sample string 3", "CADRS": "sample string 4", "ADRS": "sample string 5", "CP": "sample string 6", "VILLE": "sample string 7", "PAYS": "sample string 8", "DCRET": "sample string 9", "DEPET": "sample string 10", "SICCODE": "sample string 11", "INDUSTRY": "sample string 12", "SALESEUR": "sample string 13", "EMPLOYEESNUMBER": "sample string 14", "ISACTIVE": "sample string 15", "DUNSNUMBER": "sample string 16" } ] }
application/xml, text/xml
<RechercheResponseInter xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Message>sample string 1</Message> <Code>sample string 2</Code> <Societes> <SocieteInter> <NATIONALID>sample string 1</NATIONALID> <RSOC>sample string 2</RSOC> <ENSEIGNE>sample string 3</ENSEIGNE> <CADRS>sample string 4</CADRS> <ADRS>sample string 5</ADRS> <CP>sample string 6</CP> <VILLE>sample string 7</VILLE> <PAYS>sample string 8</PAYS> <DCRET>sample string 9</DCRET> <DEPET>sample string 10</DEPET> <SICCODE>sample string 11</SICCODE> <INDUSTRY>sample string 12</INDUSTRY> <SALESEUR>sample string 13</SALESEUR> <EMPLOYEESNUMBER>sample string 14</EMPLOYEESNUMBER> <ISACTIVE>sample string 15</ISACTIVE> <DUNSNUMBER>sample string 16</DUNSNUMBER> </SocieteInter> <SocieteInter> <NATIONALID>sample string 1</NATIONALID> <RSOC>sample string 2</RSOC> <ENSEIGNE>sample string 3</ENSEIGNE> <CADRS>sample string 4</CADRS> <ADRS>sample string 5</ADRS> <CP>sample string 6</CP> <VILLE>sample string 7</VILLE> <PAYS>sample string 8</PAYS> <DCRET>sample string 9</DCRET> <DEPET>sample string 10</DEPET> <SICCODE>sample string 11</SICCODE> <INDUSTRY>sample string 12</INDUSTRY> <SALESEUR>sample string 13</SALESEUR> <EMPLOYEESNUMBER>sample string 14</EMPLOYEESNUMBER> <ISACTIVE>sample string 15</ISACTIVE> <DUNSNUMBER>sample string 16</DUNSNUMBER> </SocieteInter> </Societes> </RechercheResponseInter>