The Spanish version is the authoritative reference. View in Spanish
036 Registration
JSON request structure
✓ = required data
C = conditional data
| Parameter | Required | Description | Data type | Size | Value |
|---|---|---|---|---|---|
| status | ✓ | Event code | N | 3 | 036 |
| description | ✓ | Text describing the Registration | A | 1-500 | |
| operationType | ✓ | Registration code 361 = First registration of the electronic sales invoice as a negotiable instrument for General Negotiation 362 = First registration of the electronic sales invoice as a negotiable instrument for Prior Direct Negotiation 363 = Subsequent registration of the electronic sales invoice as a negotiable instrument for General Negotiation 364 = Subsequent registration of the electronic sales invoice as a negotiable instrument for Prior Direct Negotiation | N | 3 | |
| IDEmisor | ✓ | NIT of the Issuer of the electronic invoice to register | N | 3-13 | |
| IDEmisorTipo | ✓ | Identification type of the Issuer of the electronic invoice to register | N | 2 | |
| NombreEmisor | ✓ | Name of the Issuer of the electronic invoice to register | A | 5-450 | |
| IDEndosatario | C | NIT of the Endorsee when the operationType is = 362 or 364. | N | 3-13 | |
| NombreEndosatario | C | Name of the Endorsee when the operationType is = 362 or 364 | A | 5-450 | |
| valuePaid | ✓ | Value paid by the receiver of the Registration. Can be 0. | N | 1-20 | |
| valueInvoice | ✓ | Total value of the electronic invoice to register. | N | 1-20 | |
| InvoiceID | ✓ | ID of the electronic invoice to register | A | 50 | |
| docType | ✓ | Type of the electronic invoice to register | N | 2 | 01 |
| CUFEInvoice | ✓ | CUFE of the electronic invoice to register | A | 96 | |
| IssueDate | ✓ | Issue date of the electronic invoice to register | F | 10 | |
| EndDateInvoice | ✓ | Due date of the electronic invoice to register | F | 10 |
JSON request example
In the following example we show how to make a JSON request where a 036 event of type 361 is sent.
{
"status":"036",
"description":"Inscripcion",
"operationType":"361",
"valuePaid":"0",
"valueInvoice":"432000",
"IDEmisor":"900508908",
"IDEmisorTipo":"31",
"NombreEmisor":"Signature South Consulting",
"InvoiceID":"SETP994002551",
"docType":"01",
"CUFEInvoice":"3f0f41655f674f08a59ae541add81e043c77d4331a469fc82bfa1f7f7c5c57d22dd417d6b2258240bd3119d485120b07",
"IssueDate":"2022-12-05",
"EndDateInvoice":"2022-12-30"
}