Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Notificar actualización de los datos de facturación de un documento

DescripciónEl llamado a este servicio se ejecutará después de haber actualizado los datos de facturación de un documento, para informar los nuevos valores. Este servicio corresponde al BUS/SSB quién hará llegar la información a SAP.
Método

PENDIENTE DEFINICIÓN

URL

PENDIENTE DEFINICIÓN

Payload
Json Schema
{
	"$schema": "http://json-schema.org/draft-04/schema#",
	"type": "object",
	"properties": {
		"receptor": {
			"type": "object",
			"properties": {
				"rfc": {
					"type": "string"
				},
				"nombre": {
					"type": "string"
				},
				"codigoPostal": {
					"type": "string"
				},
				"regimenFiscal": {
					"type": "string"
				},
				"usoCfdi": {
					"type": "string"
				},
				"email": {
					"type": "string"
				}
			},
			"required": [
				"rfc",
				"nombre",
				"codigoPostal",
				"regimenFiscal",
				"usoCfdi",
				"email"
			]
		}
	},
	"required": [
		"receptor"
	]
}
Ejemplo de Payload
{
	"receptor": {
		"rfc": "",
		"nombre": "",
		"codigoPostal":"",
		"regimenFiscal": "",
		"usoCfdi": "",
		"email": ""
	}
}
  • No labels