Importar clientes/proveedores a tabla temporal
curl -X POST "http://sage200capiconta.abmscloud.com/api/v1/tmpime/clientesproveedores" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '[{
"CodigoEmpresa": "100",
"ClienteOProveedor": "C",
"CodigoClienteProveedor": "1000000001",
"RazonSocial": "EMPRESA EJEMPLO S.L.",
"CifDni": "B12345678"
}]'
Importar plan de cuentas a tabla temporal
curl -X POST "http://sage200capiconta.abmscloud.com/api/v1/tmpime/plancuentaspgc" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '[{
"CodigoEmpresa": "100",
"CodigoCuenta": "999999999",
"Cuenta": "BANCOS E INSTITUCIONES 99"
}]'
Importar movimientos/asientos a tabla temporal
curl -X POST "http://sage200capiconta.abmscloud.com/api/v1/tmpime/movimientos" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '[{
"CodigoEmpresa": "100",
"Ejercicio": "2025",
"FechaAsiento": "2025-01-01",
"NumeroAsiento": 1,
"CodigoCuenta": "430000004",
"ImporteH": 559.69,
"Debe_Haber": "H"
}]'