/api/v1/auth/registerRegistrar una cuenta
Intenta crear una cuenta con email, contraseña y aceptación de los dos documentos.
Autenticación
Público
Cabeceras y parámetros
Content-Type: application/json
Ejemplo cURL
curl -i -X POST "https://api.datapilotax.es/api/v1/auth/register" \
-H 'Content-Type: application/json' \
-d '{
"series": "F2026",
"number": "0001",
"issueDate": "2026-09-05",
"issuer": {
"taxIdNumber": "B12345674",
"legalName": "INTEGRADOR SL",
"address": {
"address": "Calle Mayor 1",
"postCode": "28001",
"town": "Madrid",
"province": "Madrid",
"countryCode": "ESP"
}
},
"receiver": {
"taxIdNumber": "A58818501",
"legalName": "CLIENTE DE PRUEBA SL",
"address": {
"address": "Gran Via 2",
"postCode": "28013",
"town": "Madrid",
"province": "Madrid",
"countryCode": "ESP"
}
},
"lines": [
{
"description": "Servicios de desarrollo de software",
"quantity": 1.00,
"unitPriceWithoutTax": 100.00,
"totalAmountWithoutTax": 100.00,
"taxRate": 21.00
}
],
"totals": {
"totalGrossAmount": 100.00,
"totalTaxAmount": 21.00,
"totalPayableAmount": 121.00
}
}'Respuesta
403: Public registration is currently disabled.