Returns all product reception orders completed within Rayo fulfillment network warehouses. Requires a valid JWT Bearer token.
GET
/api/rest/reception
curl \
--request GET 'https://cerebro.techrayo.com/api/rest/reception' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"recepcion_inventario": [
{
"id": "cc40c763-c10b-4573-a6ae-d17358081fca",
"almacen": {
"telefono": "8118791968",
"nombre_almacen": "Enviatodo.com"
},
"empleado": {
"nombre": "Daniel",
"apellido": "Hernandez"
},
"nombre_chofer": "Cristiano Ronaldo",
"fecha_recepcion": "2022-04-27T16:28:09.234195+00:00",
"detalle_recepcion": [
{
"cantidad": 1,
"producto": {
"sku": "Balon",
"nombre": "Balon de futbol"
},
"almacenado": true
}
]
}
]
}
Response examples (default)
{
"error": "internal error",
"code": "unexpected",
"path": "$"
}