Skip to content

Guias de Remision (09)

Guias de Remision (despatch notes) document the transfer of goods between locations. They include transport details, carrier information, and origin/destination addresses.

POST /api/despatch-advices

Authorization: Bearer sk_live_YOUR_API_KEY or Authorization: Bearer JWT_TOKEN

{
"series": "T001",
"correlative": 1,
"issueDate": "2026-02-20",
"despatchType": "09",
"transferReason": "01",
"transferDescription": "Venta de mercaderia",
"grossWeight": 150.5,
"weightUnit": "KGM",
"numberOfPackages": 10,
"carrier": {
"identityType": "6",
"identityNumber": "20456789012",
"name": "Transportes Rapidos SAC",
"registrationNumber": "ABC-123"
},
"driver": {
"identityType": "1",
"identityNumber": "12345678",
"name": "Carlos Transportista",
"licenseNumber": "Q12345678"
},
"origin": {
"ubigeo": "150101",
"address": "Av. Industrial 500, Lima"
},
"destination": {
"ubigeo": "040101",
"address": "Calle Comercio 200, Arequipa"
},
"recipient": {
"identityType": "6",
"identityNumber": "20100047218",
"name": "Empresa Destino SAC"
},
"items": [
{
"code": "PROD-001",
"description": "Cajas de producto terminado",
"quantity": 100,
"unitCode": "NIU"
}
]
}
FieldTypeRequiredDescription
seriesstringYesSeries. Must match pattern T\d{3} (e.g., T001)
correlativenumberYesSequential number
issueDatestringYesIssue date in YYYY-MM-DD format
despatchTypestringNoDocument type. Default: 09
transferReasonstringYesSUNAT transfer reason code (see below)
transferDescriptionstringNoDescription of the transfer
grossWeightnumberYesTotal gross weight (must be positive)
weightUnitstringNoWeight unit code. Default: KGM
numberOfPackagesnumberNoNumber of packages
carrierobjectNoCarrier company data
driverobjectNoDriver data
originobjectYesOrigin location
destinationobjectYesDestination location
recipientobjectYesRecipient data
itemsarrayYesItems being transported (minimum 1)
CodeDescription
01Venta
02Compra
04Traslado entre establecimientos
08Importacion
09Exportacion
13Otros
14Venta sujeta a confirmacion
17Traslado de bienes para transformacion
18Traslado emisor itinerante
19Traslado zona primaria
FieldTypeRequiredDescription
identityTypestringYesIdentity type (typically 6 for RUC)
identityNumberstringYesRUC of the transport company
namestringYesCompany name
registrationNumberstringNoVehicle registration number
FieldTypeRequiredDescription
identityTypestringYesIdentity type (typically 1 for DNI)
identityNumberstringYesDNI number
namestringYesDriver full name
licenseNumberstringYesDriver license number
FieldTypeRequiredDescription
ubigeostringYesUBIGEO code (6 digits)
addressstringYesFull address
FieldTypeRequiredDescription
codestringYesProduct code
descriptionstringYesDescription
quantitynumberYesQuantity (must be positive)
unitCodestringYesUnit of measure code

Note: Despatch note items do not include prices or tax information.

{
"id": "cm3mno345",
"documentId": "20123456789-09-T001-00000001",
"status": "ACCEPTED",
"cdrResponseCode": "0",
"cdrDescription": "La Guia de Remision numero T001-00000001, ha sido aceptada",
"ticket": null
}