Modification of company details
⚠️
Add test=1 to run tests without real effects. In production, omit this parameter.
Parameters
- test (number (1)) : For testing, add the test=1 parameter. It must be omitted in production.
- cif (string) : Company CIF.
- razon_social (string) : Registered company name.
- domicilio (object): Address.
- via_publica (string) : Street name.
- municipio: Fuente el Fresno
- Table of municipality codes (opens in a new tab).
- codigo_postal (string) : Postal code.
- tipo_via (string) : Street type:
- CM: Path
- CL: Street.
- AV: Avenue.
- etc.
- numero (string) : Optional, number.
- piso (string) : Optional, floor.
- letra (string) : Optional, letter.
- portal (string) : Optional, entrance:
- PA: Entrance A.
- PB: Entrance B.
- B: Bis.
- P1: Entrance 1.
- etc.
PUT /authorization-management/enterprise-data
{
"cif":"B19912999",
"razon_social":"NOMBRE DE LA EMPRESA",
"domicilio":{
"via_publica":"FUENTE EL FRESNO",
"municipio":"13044",
"codigo_postal":"13680",
"tipo_via":"CM",
"numero":"",
"piso":"",
"letra":"",
"portal":""
}
}Response
Respuesta
{
"success": true,
"message": "OK",
"status": 200,
}