🔎Constatación de Comprobantes
https://www.afip.gob.ar/ws/WSCDCV1/WSCDC_manual_desarrollador_v.2.pdf
Paso 1 - Crear una instancia del web service
const ws = afip.WebService('wscdc');
$ws = $afip->WebService('wscdc');
ws = afip.webService("wscdc")
ws = afip.webService("wscdc")
No se requiere ninguna acción adicional.
Paso 2 - Preparar los datos para la solicitud
En el manual del web service pueden encontrar los métodos disponibles
En este ejemplo vamos a usar los datos para el método ComprobanteConstatar
// Obtenemos el TA
const ta = await ws.getTokenAuthorization();
// Preparamos los datos
const data = {
'Auth': {
'Token': ta.token,
'Sign': ta.sign,
'Cuit': afip.CUIT
},
'CmpReq': {
'CbteModo': 'CAE',
'CuitEmisor': 20000000001,
'PtoVta': 1,
'CbteTipo': 1,
'CbteNro': 2,
'CbteFch': 20101014,
'ImpTotal': 300.8,
'CodAutorizacion': '60428000005029',
'DocTipoReceptor': '80',
'DocNroReceptor': '300000000007'
}
};
// Obtenemos el TA
$ta = $ws->GetTokenAuthorization();
// Preparamos los datos
$data = array(
'Auth' => array(
'Token' => $ta->token,
'Sign' => $ta->sign,
'Cuit' => $afip->CUIT
),
'CmpReq' => array(
'CbteModo' => 'CAE',
'CuitEmisor' => 20000000001,
'PtoVta' => 1,
'CbteTipo' => 1,
'CbteNro' => 2,
'CbteFch' => 20101014,
'ImpTotal' => 300.8,
'CodAutorizacion' => '60428000005029',
'DocTipoReceptor' => '80',
'DocNroReceptor' => '300000000007'
)
);
# Obtenemos el TA
ta = ws.getTokenAuthorization
# Preparamos los datos
data = {
"Auth": {
"Token": ta["token"],
"Sign": ta["sign"],
"Cuit": afip.CUIT
},
"CmpReq": {
"CbteModo": "CAE",
"CuitEmisor": 20000000001,
"PtoVta": 1,
"CbteTipo": 1,
"CbteNro": 2,
"CbteFch": 20101014,
"ImpTotal": 300.8,
"CodAutorizacion": "60428000005029",
"DocTipoReceptor": "80",
"DocNroReceptor": "300000000007"
}
}
# Obtenemos el TA
ta = ws.getTokenAuthorization()
# Preparamos los datos
data = {
"Auth": {
"Token": ta["token"],
"Sign": ta["sign"],
"Cuit": afip.CUIT
},
"CmpReq": {
"CbteModo": "CAE",
"CuitEmisor": 20000000001,
"PtoVta": 1,
"CbteTipo": 1,
"CbteNro": 2,
"CbteFch": 20101014,
"ImpTotal": 300.8,
"CodAutorizacion": "60428000005029",
"DocTipoReceptor": "80",
"DocNroReceptor": "300000000007"
}
}
No se requiere ninguna acción adicional.
Paso 3 - Ejecutamos la solicitud
const res = await ws.executeRequest('ComprobanteConstatar', data);
console.log(res);
$res = $ws->ExecuteRequest('ComprobanteConstatar', $data);
var_dump($res);
res = ws.executeRequest("ComprobanteConstatar", data)
puts res
res = ws.executeRequest("ComprobanteConstatar", data)
print(res)
Endpoint
POST
https://app.afipsdk.com/api/v1/afip/requests
Ejemplo
{
"environment": "dev",
"method": "ComprobanteConstatar",
"wsid": "wscdc",
"params": {
"Auth": {
"Token": "{{token}}",
"Sign": "{{sign}}",
"Cuit": "20409378472"
},
"CmpReq": {
"CbteModo": "CAE",
"CuitEmisor": 20000000001,
"PtoVta": 1,
"CbteTipo": 1,
"CbteNro": 2,
"CbteFch": 20101014,
"ImpTotal": 300.8,
"CodAutorizacion": "60428000005029",
"DocTipoReceptor": "80",
"DocNroReceptor": "300000000007"
}
}
}
Última actualización