e-Transport (waybill)
How to get “API Key” from Portal?
To obtain the API key used with /auth/login, navigate to Settings → ERP Management → API Management in the Portal and use Generate. See also Authentication.
Romania — e-Transport (waybill)
e-Transport is Romania’s electronic transport document system (UIT — Ultima Instanță de Transport). Waybills are submitted to ANAF as XML. Use token type ROMANIA_WAYBILL when uploading the OAuth token (see eFactura (ANAF)).
Create new waybill POST
Purpose of use: Submit a new UIT (e-Transport) waybill to ANAF.
Endpoint Information
| Property | Value |
|---|---|
| URL | /invoice/RO/transport/new |
| Method | POST |
| Content-Type | application/json |
| Base URL | Stage Environment URLhttps://app-stage.docnova.ai/ Production Environment URLhttps://api.docnova.ai/ |
| Authorization | Bearer JWT |
{
"companyId": "uuid",
"xmlData": "PD94bWwgdm..."
}
| Field | Type | Required | Description |
|---|---|---|---|
| companyId | UUID | Yes | Company ID |
| xmlData | String | Yes | Base64-encoded UIT XML |
Edit waybill POST
Endpoint Information
| Property | Value |
|---|---|
| URL | /invoice/RO/transport/edit |
| Method | POST |
| Content-Type | application/json |
| Base URL | Stage Environment URLhttps://app-stage.docnova.ai/ Production Environment URLhttps://api.docnova.ai/ |
| Authorization | Bearer JWT |
{
"companyId": "uuid",
"uit": "UIT-123456",
"xmlData": "PD94bWwgdm..."
}
Search waybills POST
Endpoint Information
| Property | Value |
|---|---|
| URL | /invoice/RO/transport/search |
| Method | POST |
| Content-Type | application/json |
| Base URL | Stage Environment URLhttps://app-stage.docnova.ai/ Production Environment URLhttps://api.docnova.ai/ |
| Authorization | Bearer JWT |
{
"companyId": "uuid",
"cif": "RO12345678",
"dateFrom": "2025-01-01",
"dateTo": "2025-12-31"
}
Respond to waybill POST
Endpoint Information
| Property | Value |
|---|---|
| URL | /invoice/RO/transport/respond |
| Method | POST |
| Content-Type | application/json |
| Base URL | Stage Environment URLhttps://app-stage.docnova.ai/ Production Environment URLhttps://api.docnova.ai/ |
| Authorization | Bearer JWT |
{
"companyId": "uuid",
"uit": "UIT-123456",
"responseType": "ACCEPT",
"xmlData": "PD94bWwgdm..."
}
Cancel waybill POST
Endpoint Information
| Property | Value |
|---|---|
| URL | /invoice/RO/transport/cancel |
| Method | POST |
| Content-Type | application/json |
| Base URL | Stage Environment URLhttps://app-stage.docnova.ai/ Production Environment URLhttps://api.docnova.ai/ |
| Authorization | Bearer JWT |
{
"companyId": "uuid",
"uit": "UIT-123456",
"reason": "Transport canceled"
}
Get waybill status from ANAF GET
Endpoint Information
| Property | Value |
|---|---|
| URL | /invoice/RO/transport/get-status-anaf |
| Method | GET |
| Base URL | Stage Environment URLhttps://app-stage.docnova.ai/ Production Environment URLhttps://api.docnova.ai/ |
| Authorization | Bearer JWT |
Query parameters
| Field | Type | Required | Description |
|---|---|---|---|
| companyId | UUID | Yes | Company ID |
| uit | String | Yes | UIT identifier |
Get waybill XML GET
Endpoint Information
| Property | Value |
|---|---|
| URL | /invoice/RO/transport/xml |
| Method | GET |
| Base URL | Stage Environment URLhttps://app-stage.docnova.ai/ Production Environment URLhttps://api.docnova.ai/ |
| Authorization | Bearer JWT |
Query parameters
| Field | Type | Required | Description |
|---|---|---|---|
| companyId | UUID | Yes | Company ID |
| uit | String | Yes | UIT identifier |