Skip to main content
GET
/
api
/
v1
/
remitos
/
{remito_id}
Obtener remito por ID
curl --request GET \
  --url https://api.lapyme.com.ar/api/v1/remitos/{remito_id} \
  --header 'Authorization: Bearer <token>'
{
  "request_id": "<string>",
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "number": "<string>",
    "date": "2023-12-25",
    "customer": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "email": "jsmith@example.com",
      "phone": "<string>",
      "tax_id_type": "<string>",
      "tax_id": "<string>",
      "tax_category": "<string>"
    },
    "origin": {
      "type": "<string>",
      "sale_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    },
    "created": "2023-11-07T05:31:56Z",
    "remito_number": 123,
    "point_of_sale": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "number": 123,
      "name": "<string>"
    },
    "carrier": "<string>",
    "delivery_address": "<string>",
    "scheduled_date": "2023-12-25",
    "delivered_at": "2023-11-07T05:31:56Z",
    "recipient_name": "<string>",
    "recipient_dni": "<string>",
    "driver_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "notes": "<string>",
    "items": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "sale_item_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "quantity": 123,
        "name": "<string>",
        "is_custom": true,
        "warehouse_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "product": {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "sku": "<string>",
          "name": "<string>",
          "option_names": [
            "<string>"
          ],
          "variant_options": {},
          "kit_units": 123
        }
      }
    ],
    "updated": "2023-11-07T05:31:56Z",
    "object": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Incluí tu API key en el header Authorization con el prefijo Bearer.

Path Parameters

remito_id
string<uuid>
required

ID del remito

Response

Remito obtenido exitosamente

request_id
string
required
data
object
required