Download OpenAPI specification:Download
Esta API contiene todas las funcionalidades de envíos que usted necesita para integrarla en su negocio, en caso de que usted no tenga un sistema existente, le recomendamos que use las apps pronto disponibles en Play Store, Apple Store o se contacte con nosotros y les proveeremos sus credenciales. Entre las principales funcionalidades se encuentran:
Además, en el contexto de nuestro sistema, trabajamos con dos entornos distintos: desarrollo y producción. Estos entornos se utilizan para realizar pruebas y desplegar la aplicación final, respectivamente. Para acceder a la funcionalidad de la API en cada uno de estos entornos, es necesario utilizar los enlaces adecuados.
staging-api.tizo.co: Este enlace está configurado para apuntar al entorno de desarrollo de nuestra API. Cuando accedes a staging-api.tizo.co, estás interactuando con una versión de la API que se encuentra en desarrollo activo. Este entorno es utilizado principalmente por los desarrolladores y el equipo de pruebas para probar nuevas funcionalidades, realizar pruebas exhaustivas y detectar posibles errores o problemas antes de implementar los cambios en el entorno de producción. Es importante tener en cuenta que el entorno de desarrollo (staging-api.tizo.co) puede ser inestable en comparación con el entorno de producción, ya que se encuentra en constante desarrollo. Por lo tanto, si estás trabajando con staging-api.tizo.co, ten en cuenta que podrías encontrar errores o comportamientos no deseados que aún no han sido corregidos.
api.tizo.co: Este enlace está configurado para apuntar al entorno de producción de nuestra API. Cuando accedes a api.tizo.com, estás interactuando con la versión estable y finalizada de nuestra API que se utiliza en producción. Este entorno se utiliza para brindar servicio a los usuarios finales y a las aplicaciones en producción que dependen de la API. En el entorno de producción (api.tizo.co), se espera que la API sea estable y libre de errores graves. Se realizan pruebas exhaustivas en el entorno de desarrollo antes de desplegar los cambios en producción, con el objetivo de garantizar la calidad y confiabilidad de la API en este entorno.
Es crucial tener en cuenta la diferencia entre estos dos enlaces y utilizar el enlace correcto según tus necesidades. Si estás desarrollando o realizando pruebas en tu aplicación, deberías utilizar staging-api.tizo.co para interactuar con la API en el entorno de desarrollo. Sin embargo, si estás utilizando tu aplicación en un entorno de producción, asegúrate de utilizar api.tizo.co para acceder a la API estable en producción y proporcionar un servicio confiable a tus usuarios finales.
Para un mejor uso de nuestra API, debes de tomar en cuenta que cada request que se haga, se recibe los siguientes headers.
Clave | Valor |
---|---|
Authorization | Token |
Content-Type | application/json |
Accept-Language | es, en |
User-Agent | Navegador donde procede la solicitud |
Para obtener el valor del token necesitas realizar un POST request hacia https://staging-api.tizo.co/api/v1/auth/login con el siguiente body:
{
"username": "your_username",
"password": "your_password",
"typeUser": "store_api"
}
Este endpoint te permite cambiar la contraseña de un usuario ya logueado. Para hacerlo necesitas registrar la antigua contraseña y la nueva contraseña que deseas tener. El mensaje de respuesta estará compuesto por el tipo de usuario y la información del usuario que acaba de cambiar su contraseña.
Estructura de datos para cambiar contraseña
password required | string <password> >= 2 characters Nueva Contraseña |
oldPassword required | string <password> >= 2 characters Antigua Contraseña |
{- "password": "nuevacontra",
- "oldPassword": "antiguacontra"
}
{- "data": {
- "type_user": "store_api",
- "user": {
- "idVendorUser": 1,
- "idStatusVendorUser": 1,
- "firstName": "Adriana",
- "lastName": "Bolaños",
- "phone": 50563397024,
- "email": "john.smith@example.com",
- "identification": "001-4430696-0016J",
- "gender": 3,
- "birthDate": "2022-08-04",
- "loginLast": "2022-07-12T19:05:37.403+00:00",
- "dateCreation": "2022-06-21T16:13:09.567+00:00",
- "dateLastUpdate": "2022-06-21T16:13:09.567+00:00",
- "ipCreation": "190.143.250.2",
- "username": "v_adriana_9",
- "connect": false,
- "storesPermissions": [
- {
- "idStore": 1,
- "name": "Tienda 1",
- "profile": {
- "idProfileVendorUser": 1,
- "name": "Administrador",
- "description": "Perfil de administrador"
}, - "permissions": [
- {
- "idModule": 1,
- "idPermission": 1,
- "nameModule": "Módulo 1",
- "namePermission": "Permiso 1"
}
]
}
], - "storeBranchesPermissions": [
- {
- "idStoreBranch": 1,
- "name": "Sucursal 1",
- "permissions": [
- {
- "idModule": 1,
- "idPermission": 1,
- "nameModule": "Módulo 1",
- "namePermission": "Permiso 1"
}
], - "shippingPermissions": [ ],
- "profile": {
- "idProfileVendorUser": 1,
- "name": "Administrador",
- "description": "Perfil de administrador"
}
}
]
}
}, - "message": "Se han actualizado las credenciales de acceso.",
- "status": 200
}
Este método te permite iniciar sesión con un nombre de usuario, una contraseña y un tipo de usuario
Estructura de datos para iniciar sesión
username required | string Username del usuario |
password required | string non-empty Contraseña del usuario |
typeUser required | string Enum: "store" "store_api" Establece que tipo de usuario |
{- "username": "username12",
- "password": "contraseña",
- "typeUser": "store"
}
{- "data": {
- "type_user": "store",
- "refresh_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0IiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
- "auth_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
- "user": {
- "idVendorUser": 1,
- "idStatusVendorUser": 1,
- "firstName": "Adriana",
- "lastName": "Bolaños",
- "phone": 50563397024,
- "email": "john.smith@example.com",
- "identification": "001-4430696-0016J",
- "gender": 3,
- "birthDate": "2022-08-04",
- "loginLast": "2022-07-12T19:05:37.403+00:00",
- "dateCreation": "2022-06-21T16:13:09.567+00:00",
- "dateLastUpdate": "2022-06-21T16:13:09.567+00:00",
- "ipCreation": "190.143.250.2",
- "username": "v_adriana_9",
- "connect": false,
- "storesPermissions": [
- {
- "idStore": 1,
- "name": "Tienda 1",
- "profile": {
- "idProfileVendorUser": 1,
- "name": "Administrador",
- "description": "Perfil de administrador"
}, - "permissions": [
- {
- "idModule": 1,
- "idPermission": 1,
- "nameModule": "Módulo 1",
- "namePermission": "Permiso 1"
}
]
}
], - "storeBranchesPermissions": [
- {
- "idStoreBranch": 1,
- "name": "Sucursal 1",
- "permissions": [
- {
- "idModule": 1,
- "idPermission": 1,
- "nameModule": "Módulo 1",
- "namePermission": "Permiso 1"
}
], - "shippingPermissions": [ ],
- "profile": {
- "idProfileVendorUser": 1,
- "name": "Administrador",
- "description": "Perfil de administrador"
}
}
]
}
}, - "message": "Hello!",
- "status": 200
}
Este método te permite recuperar la cuenta si se ha olvidado los datos de inicio de sesión de la misma, lo que se necesitaría son 3 datos; el tipo de método por el que deseas recuperarlo, el tipo de usuario y un dato que puede ser el correo, usuario o teléfono. Dependiendo del método que ha seleccionado para la recuperación de la contraseña se le enviará un link a su correo o teléfono para que pueda restablecer su contraseña.
Estructura de datos para recuperar la cuenta.
method required | string Enum: "email" "sms" Método para recuperar la contraseña |
wordToMatch required | string Enum: "your_email" "your_username" "your_phonenumber" Palabra que debe coincidir con la palabra de recuperación |
typeUser required | string Tipo de usuario |
{- "method": "email",
- "wordToMatch": "m_yoni3",
- "typeUser": "vendor"
}
{- "message": "Se ha enviado las instrucciones para recuperar la contraseña.",
- "status": 200
}
Este método necesita el token anterior para poder obtener un token nuevo. Adicionalmente, se sobre entiende que tiene la misma duración que el primer token obtenido (una semana).
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/auth/refresh-token/"); client.Timeout = -1; var request = new RestRequest(Method.POST); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoic3RvcmVfYXBpIiwidXNlcm5hbWUiOiJzdG9yZV8xMSIsImlhdCI6MTY2ODE4MDY3MywiZXhwIjoxNjY4Nzg1NDczfQ.Epg1NeTr_R2de8jUQW-B2eJxyEFpC00CaJMmxsHHFbP9tkHBWhU7eTLIe47GHWchyy_-z-WthaloG92yFeblHg"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "message": "Token aún vigente!!",
- "status": 200
}
Este método te permite buscar un envío por medio de su código de envío y devuelve los datos del mismo.
codeDelivery | string Example: codeDelivery=5443185F-3FD5-42B1-AF56-4A3128E996A7 Código del envío |
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/delivery/get/?codeDelivery=5443185F-3FD5-42B1-AF56-4A3128E996A7"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoic3RvcmVfYXBpIiwidXNlcm5hbWUiOiJzdG9yZV8xMSIsImlhdCI6MTY2ODE4MDY3MywiZXhwIjoxNjY4Nzg1NDczfQ.Epg1NeTr_R2de8jUQW-B2eJxyEFpC00CaJMmxsHHFbP9tkHBWhU7eTLIe47GHWchyy_-z-WthaloG92yFeblHg"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "idDelivery": 304,
- "idPaymentType": 2,
- "idDeliveryType": 2,
- "deliveryType": "Envío Simple",
- "code": "AFAD073D-DD1C-4788-B03B-77A4EBA2FE3A",
- "codeShort": "77A4EBA2FE3A",
- "deliveryTime": "2022-06-08T17:15:53.000+00:00",
- "deliveryTimeInMillis": 1660066553940,
- "estimatedDeliveryTimeInMillis": 0,
- "scheduledDeliveryTimeInMillis": 0,
- "idCapacity": 0,
- "baseRatePickup": 0,
- "distance": 6136,
- "discount": 0,
- "height": 16,
- "weight": 25,
- "depth": 45,
- "width": 35,
- "total": 50,
- "description": "Con descripcion",
- "notificationMail": "agarciadarce@gmail.com",
- "active": true,
- "origin": "store_api",
- "receiver": "courier",
- "idStatusDelivery": 2,
- "dateCreation": "2022-06-23T20:39:39.157+00:00",
- "dateLastUpdate": "2022-06-23T20:39:39.157+00:00",
- "metadata": "{\"id\":\"31002209271747398168891\",\"shareLocationUrl\":\"https://envios.pedidosyani.com.ni/tracking/MzEwMDIyMDkyNzE3NDczOTgxNjg4OTEjQVBJIzMxMDA=\",\"status\":\"PREORDER\"}",
- "pinDelivery": 32400,
- "paymentTypes": {
- "idPaymentType": 4,
- "code": "BOLSON",
- "name": "Bolsón de crédito",
- "description": "Habilitado por los couriers."
}, - "capacity": {
- "idCapacity": 5,
- "code": "TS",
- "name": "El Mini"
}, - "statusDelivery": {
- "idStatusDelivery": 2,
- "name": "Finalizado",
- "code": "FINISHED"
}, - "items": [
- {
- "idDeliveryItem": 274,
- "idDelivery": 304,
- "idItemCategory": 0,
- "categoryName": "Otros",
- "code": "9da503c8-9bfd-41a1-b420-26f94d28f367",
- "categoryOther": "M",
- "name": "Paquete numero uno",
- "description": "Una escoba con gaseosa.",
- "quantity": 1,
- "document": false,
- "fragile": false,
- "value": 50,
- "height": 1,
- "weight": 1,
- "depth": 1,
- "width": 1,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "deliveryItemsFiles": [
- {
- "idDeliveryItemFile": 200,
- "idDeliveryItem": 166,
- "fileName": "/home/juan/Documentos/archivo.pdf"
}
]
}
], - "relationInvoices": [
- {
- "idRelatedInvoice": 18,
- "code": 10,
- "description": "test",
- "dateCreation": "2023-03-30T04:21:57.223+00:00",
- "dateLastUpdate": "2023-03-30T04:21:57.223+00:00"
}
], - "steps": [
- {
- "idStepDelivery": 167,
- "idStepDeliveries": 36,
- "idDelivery": 163,
- "name": "Orden creada",
- "description": "Envío creado",
- "stepsDeliveries": {
- "idStepDeliveries": 36,
- "name": "Orden creada",
- "code": "CREATED",
- "type": 0,
- "order": 0
}, - "dateCreation": "2022-06-23T20:39:39.157+00:00",
- "dateCreationInMillis": "2022-06-23T20:39:39.157+00:00",
- "dateLastUpdate": "2022-06-23T20:39:39.157+00:00"
}
], - "waypoints": [
- {
- "idDeliveryWaypoint": 299,
- "idDelivery": 163,
- "type": "PICK-UP",
- "city": "Managua",
- "addressStreet": "Miguel Gutierrez",
- "addressHuman": "Tamarindo",
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "phone": "8888-8838",
- "personName": "John",
- "personEmail": "john@john.com",
- "instructions": "Arbol de mango",
- "latitude": 12.121212,
- "longitude": -12.121212,
- "personIdentification": "001-061199-1009L",
- "arrivalOrder": 1,
- "country": "Nicaragua",
- "state": "Managua",
- "courierAreaWaypoints": {
- "idCourierAreaWaypoint": "Managua",
- "idDeliveryWaypoint": "Managua",
- "idCourierArea": "Managua",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}, - "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "idWaypointsPickUpItems": [
- 1
], - "idWaypointsDropOffItems": [
- 1
]
}
], - "relationCouriers": {
- "idDeliveryCourier": 166,
- "idDelivery": 166,
- "idCourier": 166,
- "courierDriverUser": { },
- "rating": 4,
- "comment": "Rapidos y buena atencion.",
- "courier": {
- "idCourier": 299,
- "dba": "Empresa de logistica",
- "name": "Tizo",
- "description": "Cargo de prueba",
- "commission": 0.5,
- "phone": 50578457845,
- "email": "hoh@gmail.com",
- "traditional": true,
- "vacation": true,
- "isPrivate": false,
- "providerApi": true,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}, - "relationCustomer": null,
- "relationDrivers": {
- "idDeliveryDriver": 166,
- "idDelivery": 166,
- "idDriver": 166,
- "rating": 4,
- "comment": "Rapidos y buena atencion.",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "driver": null
}, - "relationVendors": {
- "idDeliveryVendor": 166,
- "idDelivery": 166,
- "idVendor": 166,
- "vendorUsername": "v_adriana_9",
- "storesBranch": {
- "idStoreBranch": 1,
- "idStore": 1,
- "name": "Sede Central",
- "idMunicipality": 1,
- "addressGeo": "4QRG+622, Managua, Nicaragua",
- "phone": 50575874875,
- "addressHuman": "Parque Central",
- "latitude": 12.140644111,
- "longitude": -86.225119053,
- "active": true,
- "vacation": false,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "store": {
- "idStore": 1,
- "name": "Tizo",
- "dba": "Tizo",
- "description": "AA",
- "phone": 50586600957,
- "email": "john@john.com",
- "ruc": 1212122,
- "vacation": false,
- "isPrivate": true,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}
}, - "relationStoreApi": {
- "idDeliveryVendor": 166,
- "idDelivery": 166,
- "idStoreApi": 166,
- "idStoreBranch": 166,
- "rating": 2,
- "comment": "Hola",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "storeApi": {
- "idStoreApi": 19,
- "idStore": 16,
- "username": "store_2",
- "email": "john.smith@example.com",
- "active": true,
- "loginLastUpdate": "2022-07-12T19:05:37.403+00:00",
- "dateCreation": "2022-06-21T16:13:09.567+00:00",
- "dateLastUpdate": "2022-06-21T16:13:09.567+00:00",
- "store": {
- "idStore": 16,
- "name": "Tizo Bodegon",
- "dba": "Tizo S.A.",
- "description": "Empresa de almacenamiento",
- "phone": 50578457845,
- "email": "tizo@tizo.app",
- "ruc": "J00000022M",
- "vacation": true,
- "isPrivate": false,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}, - "storesBranch": {
- "idStoreBranch": 19,
- "idStore": 19,
- "name": "Tizo Bodegon",
- "idMunicipality": 19,
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "phone": "8888-8838",
- "addressHuman": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "latitude": 12.121212,
- "longitude": 12.121212,
- "active": true,
- "vacation": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "store": {
- "idStore": 16,
- "name": "Tizo Bodegon",
- "dba": "Tizo S.A.",
- "description": "Empresa de almacenamiento",
- "phone": 50578457845,
- "email": "tizo@tizo.app",
- "ruc": "J00000022M",
- "vacation": true,
- "isPrivate": false,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}
}, - "relationLogistics": null,
- "relationManager": null
}, - "message": "Envio encontrado",
- "status": 200
}
Este método te permite buscar un envío por medio de su Id y devuelve los datos del mismo.
idDelivery | string Example: idDelivery=304 Id del envío |
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/delivery/get/?idDelivery=304"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoic3RvcmVfYXBpIiwidXNlcm5hbWUiOiJzdG9yZV8xMSIsImlhdCI6MTY2ODE4MDY3MywiZXhwIjoxNjY4Nzg1NDczfQ.Epg1NeTr_R2de8jUQW-B2eJxyEFpC00CaJMmxsHHFbP9tkHBWhU7eTLIe47GHWchyy_-z-WthaloG92yFeblHg"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "idDelivery": 304,
- "idPaymentType": 2,
- "idDeliveryType": 2,
- "deliveryType": "Envío Simple",
- "code": "AFAD073D-DD1C-4788-B03B-77A4EBA2FE3A",
- "codeShort": "77A4EBA2FE3A",
- "deliveryTime": "2022-06-08T17:15:53.000+00:00",
- "deliveryTimeInMillis": 1660066553940,
- "estimatedDeliveryTimeInMillis": 0,
- "scheduledDeliveryTimeInMillis": 0,
- "idCapacity": 0,
- "baseRatePickup": 0,
- "distance": 6136,
- "discount": 0,
- "height": 16,
- "weight": 25,
- "depth": 45,
- "width": 35,
- "total": 50,
- "description": "Con descripcion",
- "notificationMail": "agarciadarce@gmail.com",
- "active": true,
- "origin": "store_api",
- "receiver": "courier",
- "idStatusDelivery": 2,
- "dateCreation": "2022-06-23T20:39:39.157+00:00",
- "dateLastUpdate": "2022-06-23T20:39:39.157+00:00",
- "metadata": "{\"id\":\"31002209271747398168891\",\"shareLocationUrl\":\"https://envios.pedidosyani.com.ni/tracking/MzEwMDIyMDkyNzE3NDczOTgxNjg4OTEjQVBJIzMxMDA=\",\"status\":\"PREORDER\"}",
- "pinDelivery": 32400,
- "paymentTypes": {
- "idPaymentType": 4,
- "code": "BOLSON",
- "name": "Bolsón de crédito",
- "description": "Habilitado por los couriers."
}, - "capacity": {
- "idCapacity": 5,
- "code": "TS",
- "name": "El Mini"
}, - "statusDelivery": {
- "idStatusDelivery": 2,
- "name": "Finalizado",
- "code": "FINISHED"
}, - "items": [
- {
- "idDeliveryItem": 274,
- "idDelivery": 304,
- "idItemCategory": 0,
- "categoryName": "Otros",
- "code": "9da503c8-9bfd-41a1-b420-26f94d28f367",
- "categoryOther": "M",
- "name": "Paquete numero uno",
- "description": "Una escoba con gaseosa.",
- "quantity": 1,
- "document": false,
- "fragile": false,
- "value": 50,
- "height": 1,
- "weight": 1,
- "depth": 1,
- "width": 1,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "deliveryItemsFiles": [
- {
- "idDeliveryItemFile": 200,
- "idDeliveryItem": 166,
- "fileName": "/home/juan/Documentos/archivo.pdf"
}
]
}
], - "relationInvoices": [
- {
- "idRelatedInvoice": 18,
- "code": 10,
- "description": "test",
- "dateCreation": "2023-03-30T04:21:57.223+00:00",
- "dateLastUpdate": "2023-03-30T04:21:57.223+00:00"
}
], - "steps": [
- {
- "idStepDelivery": 167,
- "idStepDeliveries": 36,
- "idDelivery": 163,
- "name": "Orden creada",
- "description": "Envío creado",
- "stepsDeliveries": {
- "idStepDeliveries": 36,
- "name": "Orden creada",
- "code": "CREATED",
- "type": 0,
- "order": 0
}, - "dateCreation": "2022-06-23T20:39:39.157+00:00",
- "dateCreationInMillis": "2022-06-23T20:39:39.157+00:00",
- "dateLastUpdate": "2022-06-23T20:39:39.157+00:00"
}
], - "waypoints": [
- {
- "idDeliveryWaypoint": 299,
- "idDelivery": 163,
- "type": "PICK-UP",
- "city": "Managua",
- "addressStreet": "Miguel Gutierrez",
- "addressHuman": "Tamarindo",
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "phone": "8888-8838",
- "personName": "John",
- "personEmail": "john@john.com",
- "instructions": "Arbol de mango",
- "latitude": 12.121212,
- "longitude": -12.121212,
- "personIdentification": "001-061199-1009L",
- "arrivalOrder": 1,
- "country": "Nicaragua",
- "state": "Managua",
- "courierAreaWaypoints": {
- "idCourierAreaWaypoint": "Managua",
- "idDeliveryWaypoint": "Managua",
- "idCourierArea": "Managua",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}, - "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "idWaypointsPickUpItems": [
- 1
], - "idWaypointsDropOffItems": [
- 1
]
}
], - "relationCouriers": {
- "idDeliveryCourier": 166,
- "idDelivery": 166,
- "idCourier": 166,
- "courierDriverUser": { },
- "rating": 4,
- "comment": "Rapidos y buena atencion.",
- "courier": {
- "idCourier": 299,
- "dba": "Empresa de logistica",
- "name": "Tizo",
- "description": "Cargo de prueba",
- "commission": 0.5,
- "phone": 50578457845,
- "email": "hoh@gmail.com",
- "traditional": true,
- "vacation": true,
- "isPrivate": false,
- "providerApi": true,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}, - "relationCustomer": null,
- "relationDrivers": {
- "idDeliveryDriver": 166,
- "idDelivery": 166,
- "idDriver": 166,
- "rating": 4,
- "comment": "Rapidos y buena atencion.",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "driver": null
}, - "relationVendors": {
- "idDeliveryVendor": 166,
- "idDelivery": 166,
- "idVendor": 166,
- "vendorUsername": "v_adriana_9",
- "storesBranch": {
- "idStoreBranch": 1,
- "idStore": 1,
- "name": "Sede Central",
- "idMunicipality": 1,
- "addressGeo": "4QRG+622, Managua, Nicaragua",
- "phone": 50575874875,
- "addressHuman": "Parque Central",
- "latitude": 12.140644111,
- "longitude": -86.225119053,
- "active": true,
- "vacation": false,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "store": {
- "idStore": 1,
- "name": "Tizo",
- "dba": "Tizo",
- "description": "AA",
- "phone": 50586600957,
- "email": "john@john.com",
- "ruc": 1212122,
- "vacation": false,
- "isPrivate": true,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}
}, - "relationStoreApi": {
- "idDeliveryVendor": 166,
- "idDelivery": 166,
- "idStoreApi": 166,
- "idStoreBranch": 166,
- "rating": 2,
- "comment": "Hola",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "storeApi": {
- "idStoreApi": 19,
- "idStore": 16,
- "username": "store_2",
- "email": "john.smith@example.com",
- "active": true,
- "loginLastUpdate": "2022-07-12T19:05:37.403+00:00",
- "dateCreation": "2022-06-21T16:13:09.567+00:00",
- "dateLastUpdate": "2022-06-21T16:13:09.567+00:00",
- "store": {
- "idStore": 16,
- "name": "Tizo Bodegon",
- "dba": "Tizo S.A.",
- "description": "Empresa de almacenamiento",
- "phone": 50578457845,
- "email": "tizo@tizo.app",
- "ruc": "J00000022M",
- "vacation": true,
- "isPrivate": false,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}, - "storesBranch": {
- "idStoreBranch": 19,
- "idStore": 19,
- "name": "Tizo Bodegon",
- "idMunicipality": 19,
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "phone": "8888-8838",
- "addressHuman": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "latitude": 12.121212,
- "longitude": 12.121212,
- "active": true,
- "vacation": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "store": {
- "idStore": 16,
- "name": "Tizo Bodegon",
- "dba": "Tizo S.A.",
- "description": "Empresa de almacenamiento",
- "phone": 50578457845,
- "email": "tizo@tizo.app",
- "ruc": "J00000022M",
- "vacation": true,
- "isPrivate": false,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}
}, - "relationLogistics": null,
- "relationManager": null
}, - "message": "Envio encontrado",
- "status": 200
}
Este método te permite crear un envío. Es importante destacar colocar la categoría correcta, puesto que dependiendo de ella se notifican a los couriers que aceptan esta categoría. No se debitará el envío hasta que se confirme la orden.
Estructura de datos para la creación de un envío, en caso de que el usuario no pague con tarjeta de crédito.
idStore | integer ID de la tienda |
idBranchStore | integer ID de la sucursal de la tienda |
description | string Descripción del envío |
Array of objects Puntos de recogida y entrega | |
Array of objects | |
customerName | string Nombre del cliente |
customerPhone | string Teléfono del cliente |
customerEmail | string Correo electrónico del cliente |
deliveryTime | string <date-time> Fecha y hora de entrega |
deliveryTimeInMilliseconds | integer Tiempo de entrega en milisegundos |
imagePreview | string <uri> URL de la imagen de previsualización |
collectMoney | number Monto a cobrar |
isTest | boolean Indica si es una prueba |
lineBusiness | string Línea de negocio |
object | |
totalValue | number Valor total |
{- "idStore": 1,
- "idBranchStore": 1,
- "description": "Envío desde la App",
- "waypoints": [
- {
- "type": "PICK_UP",
- "city": "Managua",
- "country": "Nicaragua",
- "state": "Managua",
- "addressStreet": "Calle María de los Ángeles",
- "personName": "Otto de la Rocha",
- "personIdentification": "001-060606-1010A",
- "phone": "50588888888",
- "addressHuman": "Frente a la iglesia",
- "addressGeo": "Calle María de los Ángeles, Managua, Nicaragua",
- "personEmail": "soyuncorreo@correo.com",
- "instructions": "Llamar al timbre",
- "latitude": 12.123456,
- "longitude": -86.123456,
- "reference": 1
}
], - "items": [
- {
- "weight": 1.5,
- "height": 1.5,
- "width": 1.5,
- "depth": 1.5,
- "idItemCategory": 0,
- "idCapacity": 0,
- "value": 0,
- "fragile": true
}
], - "customerName": "Agapito Díaz",
- "customerPhone": "5512345678",
- "customerEmail": "tucorreo@correo.com",
- "deliveryTime": "2022-04-22T12:10:32Z",
- "deliveryTimeInMilliseconds": 1212121212,
- "collectMoney": 100,
- "isTest": false,
- "lineBusiness": "LOGISTICS",
- "selectedMethod": {
- "method": "DRIVER",
- "idCourier": 1,
- "idPaymentMethod": 1,
- "card": {
- "name": "Juan Perez",
- "number": "4111111111111111",
- "expirationDate": "1221",
- "cvv": "123",
- "debit": true,
- "empty": true
}, - "cash": {
- "cashAmount": 100
}, - "invoice": {
- "businessName": "CONSUMIDOR FINAL",
- "address": "CONSUMIDOR FINAL",
- "ruc": "CONSUMIDOR FINAL",
- "phone": "CONSUMIDOR FINAL"
}, - "coupon": "PRIMER_ENVIO",
- "estimateId": "121212",
- "deliveryOfferId": "121212"
}, - "totalValue": 0
}
{- "data": {
- "delivery": {
- "idDelivery": 0,
- "idPaymentType": 0,
- "idDeliveryType": 0,
- "deliveryType": "string",
- "deliveryTypeImage": "string",
- "code": "string",
- "codeShort": "string",
- "url": "string",
- "urlTracking": "string",
- "deliveryTime": "2024-08-13T15:11:24.839Z",
- "deliveryTimeInMillis": 0,
- "estimatedDeliveryTime": "2024-08-13T15:11:24.839Z",
- "estimatedDeliveryTimeInMillis": 0,
- "scheduledDeliveryTime": "2024-08-13T15:11:24.839Z",
- "scheduledDeliveryTimeInMillis": 0,
- "idCapacity": 0,
- "baseRatePickup": 0,
- "distance": 0,
- "discount": 0,
- "height": 0,
- "weight": 0,
- "depth": 0,
- "width": 0,
- "couponDiscount": 0,
- "total": 0,
- "cost": 0,
- "description": "string",
- "notificationMail": "string",
- "active": true,
- "collectMoney": 0,
- "origin": "string",
- "receiver": "string",
- "idStatusDelivery": 0,
- "dateCreation": "2024-08-13T15:11:24.839Z",
- "dateLastUpdate": "2024-08-13T15:11:24.839Z",
- "metadata": "string",
- "change": 0,
- "imagePreview": "string",
- "pinDelivery": "string",
- "paymentTypes": {
- "idPaymentType": 0,
- "code": "string",
- "name": "string",
- "description": "string"
}, - "capacity": {
- "idCapacity": 0,
- "name": "string",
- "code": "string"
}, - "statusDelivery": {
- "idStatusDelivery": 0,
- "name": "string",
- "code": "string",
- "delivery": {
- "idDelivery": 0,
- "idPaymentType": 0,
- "idDeliveryType": 0,
- "deliveryType": "string",
- "deliveryTypeImage": "string",
- "code": "string",
- "codeShort": "string",
- "url": "string",
- "urlTracking": "string",
- "deliveryTime": "2024-08-13T15:11:24.839Z",
- "deliveryTimeInMillis": 0,
- "estimatedDeliveryTime": "2024-08-13T15:11:24.839Z",
- "estimatedDeliveryTimeInMillis": 0,
- "scheduledDeliveryTime": "2024-08-13T15:11:24.839Z",
- "scheduledDeliveryTimeInMillis": 0,
- "idCapacity": 0,
- "baseRatePickup": 0,
- "distance": 0,
- "discount": 0,
- "height": 0,
- "weight": 0,
- "depth": 0,
- "width": 0,
- "couponDiscount": 0,
- "total": 0,
- "cost": 0,
- "description": "string",
- "notificationMail": "string",
- "active": true,
- "collectMoney": 0,
- "origin": "string",
- "receiver": "string",
- "idStatusDelivery": 0,
- "dateCreation": "2024-08-13T15:11:24.839Z",
- "dateLastUpdate": "2024-08-13T15:11:24.839Z",
- "metadata": "string",
- "change": 0,
- "imagePreview": "string",
- "pinDelivery": "string",
- "paymentTypes": {
- "idPaymentType": 0,
- "code": "string",
- "name": "string",
- "description": "string"
}, - "capacity": {
- "idCapacity": 0,
- "name": "string",
- "code": "string"
}, - "statusDelivery": {
- "idStatusDelivery": 0,
- "name": "string",
- "code": "string"
}, - "items": [
- {
- "idDeliveryItem": 0,
- "idDelivery": 0,
- "idItemCategory": 0,
- "categoryName": "string",
- "code": "string",
- "categoryOther": "string",
- "name": "string",
- "description": "string",
- "instructions": "string",
- "quantity": 0,
- "document": true,
- "fragile": true,
- "value": 0,
- "height": 0,
- "weight": 0,
- "depth": 0,
- "width": 0,
- "dateCreation": "2024-08-13T15:11:24.839Z",
- "dateLastUpdate": "2024-08-13T15:11:24.839Z",
- "deliveryItemsFiles": [
- {
- "idDeliveryItemFile": 0,
- "idDeliveryItem": 0,
- "fileName": "string"
}
], - "idWaypointPickup": 0,
- "idWaypointDropOff": 0
}
], - "relatedInvoices": [
- {
- "idRelatedInvoice": 0,
- "code": "string",
- "description": "string",
- "dateCreation": "2024-08-13T15:11:24.839Z",
- "dateLastUpdate": "2024-08-13T15:11:24.839Z"
}
], - "steps": [
- {
- "idStepDelivery": 0,
- "idStepDeliveries": 0,
- "idDelivery": 0,
- "name": "string",
- "author": "string",
- "description": "string",
- "stepsDeliveries": {
- "idStepDeliveries": 0,
- "name": "string",
- "code": "string",
- "type": "string",
- "order": 0
}, - "dateCreation": "2024-08-13T15:11:24.839Z",
- "dateCreationInMillis": 0,
- "dateLastUpdate": "2024-08-13T15:11:24.839Z"
}
], - "stepsToShow": [
- {
- "idStepsDeliveries": 0,
- "code": "string",
- "name": "string",
- "order": 0,
- "status": true,
- "dateCreation": 0,
- "dateLastUpdate": 0,
- "description": "string"
}
], - "validation": {
- "idDeliveryValidation": 0,
- "idDelivery": 0,
- "personReceived": "string",
- "comment": "string",
- "imgPath": "string",
- "dateCreation": "2024-08-13T15:11:24.840Z",
- "dateLastUpdate": "2024-08-13T15:11:24.840Z"
}
}
}
}
}, - "message": "Envío Creado",
- "status": 200
}
Este método te permite crear un envío. Es importante destacar colocar la categoría correcta, puesto que dependiendo de ella se notifican a los couriers que aceptan esta categoría. No se debitará el envío hasta que se confirme la orden.
Estructura de datos para la creación de un envío, en caso de que el usuario pague con tarjeta de crédito.
idStore | integer Id de la tienda |
idBranchStore | integer Id de la sucursal de la tienda |
customerEmail | string Correo Electrónico del cliente |
deliveryTypeCode | string Código del tipo de envío |
description | string Descripción del envío |
isTest | boolean El envío es de prueba |
Array of objects | |
object | |
Array of objects |
{- "idStore": 3,
- "idBranchStore": 3,
- "customerEmail": "john.smith@example.com",
- "deliveryTypeCode": "DELIVERY",
- "description": "Con descripcion",
- "isTest": true,
- "items": [
- {
- "fragile": false,
- "document": false,
- "idItemCategory": 13,
- "categoryOther": "m",
- "value": 50,
- "description": "Una escoba con gaseosa.",
- "weight": 1,
- "height": 1,
- "depth": 1,
- "width": 1,
- "name": "Paquete número uno",
- "category": 13,
- "images": [ ],
- "nameCategory": "Paquete"
}
], - "selectedMethod": {
- "method": "Courier",
- "idCourier": 0,
- "idAreaOrigin": 0,
- "idAreaDestination": 0,
- "idBranchOrigin": 0,
- "idBranchDestination": 0,
- "idPaymentMethod": 2,
- "card": {
- "name": "John Smith",
- "number": 4242424242424242,
- "debit": false,
- "expirationDate": 1224,
- "cvv": 123
}
}, - "waypoints": [
- {
- "type": "PICK-UP",
- "city": "Managua",
- "country": "Nicaragua",
- "state": "Managua",
- "addressStreet": "Miguel Gutierrez",
- "personName": "John",
- "personIdentification": "001-061199-1009L",
- "phone": "8888-8838",
- "personEmail": "john.smith@example.com",
- "addressHuman": "Tamarindo",
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "instructions": "Arbol de mango",
- "latitude": 12.121212,
- "longitude": -12.121212,
- "branchName": "tizo central",
- "storeName": "Tizo bodegon"
}
]
}
{- "data": {
- "delivery": {
- "active": true,
- "baseRatePickup": 0,
- "capacity": {
- "idCapacity": 0,
- "name": 0,
- "code": "TS"
}, - "change": 11.2,
- "code": "5443185F-3FD5-42B1-AF56-4A3128E996A7",
- "codeShort": "8ECC2BBE79ED",
- "collectMoney": 40,
- "cost": 29.8,
- "dateCreation": "2022-06-23T20:39:39.157+00:00",
- "dateLastUpdate": "2022-06-23T20:39:39.157+00:00",
- "deliveryTime": "2022-06-08T17:15:53.000+00:00",
- "deliveryTimeInMillis": 0,
- "deliveryType": "Envío simple",
- "deliveryTypeImage": "https://cdn.icon-icons.com/icons2/2107/PNG/512/file_type_php_icon_130266.png",
- "depth": 1,
- "description": "Con descripcion",
- "distance": 6136,
- "discount": 0,
- "estimatedDeliveryTime": 0,
- "estimatedDeliveryTimeInMillis": 0,
- "height": 1,
- "idCapacity": 0,
- "idDelivery": 304,
- "idDeliveryType": 2,
- "idPaymentType": 2,
- "idStatusDelivery": 2,
- "items": [
- {
- "categoryOther": "",
- "code": "5443185F-3FD5-42B1-AF56-4A3128E996A7",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "deliveryItemsFiles": [ ],
- "depth": 1,
- "description": "Con descripcion",
- "document": false,
- "fragile": false,
- "height": 1,
- "idDeliveryItem": 0,
- "idItemCategory": 0,
- "name": 0,
- "quantity": 1,
- "value": 1,
- "weight": 1,
- "width": 1
}
], - "notificationMail": "agarciadarce@gmail.com",
- "origin": "store",
- "paymentTypes": null,
- "pinDelivery": 4704,
- "receiver": "courier",
- "relationInvoices": [ ],
- "relationCouriers": {
- "courier": {
- "active": true,
- "commission": 0,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "dba": "",
- "description": "",
- "email": "",
- "idCourier": 0,
- "isPrivate": false,
- "name": "Entregas 24",
- "pathImage": "",
- "phone": 8222255,
- "providerApi": "",
- "traditional": false,
- "vacation": false
}, - "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "idCustomerUser": 0,
- "idDeliveryCustomer": 0,
- "idDeliveryCourier": 166,
- "idDelivery": 166,
- "idCourier": 166,
- "idCourierRoute": 166,
- "idCourierDriver": 166,
- "rating": null,
- "comment": null
}, - "relationInvoice": [ ],
- "relationLogistics": [ ],
- "relationManager": [ ],
- "relationStoreApi": {
- "idDeliveryVendor": 166,
- "idDelivery": 166,
- "idStoreApi": 166,
- "idStoreBranch": 166,
- "rating": 2,
- "comment": "Hola",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "storesBranch": {
- "idStoreBranch": 19,
- "idStore": 19,
- "name": "Tizo Bodegon",
- "idMunicipality": 19,
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "phone": "8888-8838",
- "addressHuman": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "latitude": 12.121212,
- "longitude": 12.121212,
- "active": true,
- "vacation": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}, - "relationVendors": null,
- "relationCustomers": "n",
- "scheduledDeliveryTime": 0,
- "scheduledDeliveryTimeInMillis": 0,
- "statusDelivery": {
- "code": "PRE_ORDER",
- "idStatusDelivery": 0,
- "name": "PreOrden"
}, - "steps": [
- {
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateCreationInMillis": 0,
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "description": "PreOrden",
- "idStepDelivery": 0,
- "idStepDeliveries": 0,
- "name": "PreOrden",
- "stepsDeliveries": { }
}
], - "total": 29.8,
- "weight": 1,
- "width": 1,
- "waypoints": [
- {
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "addressHuman": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "addressStreet": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "arrivalOrder": 1,
- "city": "Managua",
- "country": "Nicaragua",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "idDeliveryWaypoint": 0,
- "instructions": "Gire a la derecha",
- "latitude": 12.121212,
- "longitude": 12.121212,
- "personEmail": "john@gmail.com",
- "personIdentification": 123456789,
- "personName": "John Doe",
- "phone": "8888-8838",
- "state": "Managua",
- "type": "PICKUP",
- "courierAreaWaypoints": {
- "idCourierArea": 0,
- "idCourierAreaWaypoint": 0,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}
]
}, - "redirect": "<!DOCTYPE html><html><head></head><body><form id='powertranz_spi' name='powertranz_spi' action='https://staging.ptranz.com/api/spi/Conductor' method='POST'><input name='SpiToken' id='SpiToken' type='hidden' value='314y6iqjtkyu30utzuqpyso73ctrhfj2fdc9fjzwlhjcrbx99d-3plyg9wt7wz'><input name='browserLanguage' id='browserLanguage' type='hidden' value=''><input name='browserWidth' id='browserWidth' type='hidden' value=''><input name='browserHeight' id='browserHeight' type='hidden' value=''><input name='browserTimeZone' id='browserTimeZone' type='hidden' value=''><input name='browserJavaEnabled' id='browserJavaEnabled' type='hidden' value=''><input name='browserJavascriptEnabled' id='browserJavascriptEnabled' type='hidden' value=''><input name='browserColorDepth' id='browserColorDepth' type='hidden' value=''></form><script>function GetBrowserInfo(){const n=window&&window.screen?window.screen.width:'',e=window&&window.screen?window.screen.height:'',w=window&&window.screen?window.screen.colorDepth:'',o=window&&window.navigator?window.navigator.userAgent:'',i=!(!window||!window.navigator)&&navigator.javaEnabled();let a='';return window&&window.navigator&&(a=window.navigator.language?window.navigator.language:window.navigator.browserLanguage),{screenWidth:n,screenHeight:e,colorDepth:w,userAgent:o,timeZoneOffset:(new Date).getTimezoneOffset(),language:a,javaEnabled:i,javascriptEnabled:!0}}</script><script>function GetBrowserInfoAndSubmit(){var e=GetBrowserInfo();document.getElementById('browserLanguage').value=e.language,document.getElementById('browserWidth').value=e.screenWidth,document.getElementById('browserHeight').value=e.screenHeight,document.getElementById('browserTimeZone').value=e.timeZoneOffset,document.getElementById('browserJavaEnabled').value=e.javaEnabled,document.getElementById('browserJavascriptEnabled').value=e.javascriptEnabled,document.getElementById('browserColorDepth').value=e.colorDepth,document.forms[0].submit()}GetBrowserInfoAndSubmit();</script></body></html>\""
}, - "message": "Envío Creado",
- "status": 200
}
Este método te permite confirmar el envío y así empezar el flujo de los procesos.
codeDelivery | string Example: codeDelivery=5443185F-3FD5-42B1-AF56-4A3128E996A7 Código del envío |
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/delivery/confirm/6ce15dac-83d2-4631-a32d-12b753da8fbc"); client.Timeout = -1; var request = new RestRequest(Method.POST); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2dhYnJpZWxfNiIsImlhdCI6MTY1NzgwOTQ2MSwiZXhwIjoxNjU4NDE0MjYxfQ.N_rPvlIFgpj_mK8mcWzDbKEgud6bJeSNc5cOKqzyYTvWeCqStlzUCQjeyoNt98GwqpEU-4jdI35jMk83bahzpg"); request.AddHeader("Content-Type", "application/json"); var body = @"{}"; request.AddParameter("application/json", body, ParameterType.RequestBody); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "delivery": {
- "idDelivery": 304,
- "idPaymentType": 2,
- "idDeliveryType": 2,
- "idCapacity": 0,
- "code": "E5216190-BD04-4478-84D2-9D7345BA66CE",
- "baseRatePickup": 0,
- "distance": 6136,
- "discount": 0,
- "height": 50,
- "weight": 50,
- "depth": 50,
- "width": 50,
- "couponDiscount": null,
- "collectMoney": 0,
- "total": 100.522,
- "cost": 100.522,
- "change": 0,
- "description": "Con descripcion",
- "notificationMail": "agarciadarce@gmail.com",
- "deliveryTime": "2022-06-08T17:15:53.000+00:00",
- "estimatedDeliveryTime": "2022-06-08T17:15:53.000+00:00",
- "scheduledDeliveryTime": "2022-06-08T17:15:53.000+00:00",
- "active": true,
- "origin": "store_api",
- "receiver": "courier",
- "idStatusDelivery": 1,
- "dateCreation": "2022-06-23T20:39:39.157+00:00",
- "dateLastUpdate": "2022-06-23T20:39:39.157+00:00",
- "metadata": null,
- "imagePreview": null,
- "relationCouriers": {
- "idDeliveryCourier": 166,
- "idDelivery": 166,
- "idCourier": 166,
- "idCourierRoute": 166,
- "idCourierDriver": 166,
- "rating": null,
- "comment": null,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}, - "paymentWithCard": null,
- "relationLogistics": null,
- "relationDrivers": null,
- "relationVendors": {
- "idDeliveryVendor": 166,
- "idDelivery": 166,
- "idVendorUser": 166,
- "idStoreBranch": 166,
- "rating": null,
- "comment": null,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "vendorUser": {
- "idVendorUser": 166,
- "idStatusVendorUser": 166,
- "pathImage": null,
- "firstName": "Juan",
- "lastName": "Sanchez",
- "identification": 123456789,
- "phone": 123456789,
- "email": "john@ex.com",
- "gender": 1,
- "loginLast": "2022-06-08",
- "birthdate": "2022-06-08",
- "ipCreation": null,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "username": "juan",
- "connect": true,
- "fullName": "Juan Sanchez"
}, - "storesBranch": {
- "idStoreBranch": 166,
- "idStore": 166,
- "name": "Sucursal 1",
- "idMunicipality": 166,
- "addressGeo": "Calle 1 - 1",
- "phone": 123456789,
- "addressHuman": "Calle 1 - 1",
- "latitude": 123456789,
- "longitude": 123456789,
- "active": true,
- "vacation": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}, - "relationCustomers": null,
- "relationStoreApi": {
- "idDeliveryVendor": 166,
- "idDelivery": 166,
- "idStoreApi": 166,
- "idStoreBranch": 166,
- "rating": 2,
- "comment": "Hola",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "storesBranch": {
- "idStoreBranch": 19,
- "idStore": 19,
- "name": "Tizo Bodegon",
- "idMunicipality": 19,
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "phone": "8888-8838",
- "addressHuman": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "latitude": 12.121212,
- "longitude": 12.121212,
- "active": true,
- "vacation": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}, - "relationManager": null,
- "relationInvoice": null,
- "validation": null,
- "estimatedDeliveryTimeString": "23 Hours",
- "codeShort": "8ECC2BBE79ED",
- "liveTracking": true,
- "pinDelivery": 4704,
- "receiverName": "Juan Perez"
}
}, - "message": "Envío confirmado.",
- "status": 200
}
Este método te permite estimar los gastos del envío. Es importante destacar colocar la categoría correcta, puesto que dependiendo de ella se notifican a los couriers que aceptan esta categoría.
Estructura de datos para la estimación de un envio
type | string Tipo de solicitud |
Array of objects | |
Array of objects | |
deliveryTime | string Hora de entrega |
isTest | boolean Indica si es una prueba |
idStore | integer ID de la tienda |
collectMoney | number <float> Dinero a recoger |
lineBusiness | string Línea de negocio |
{- "type": "string",
- "waypoints": [
- {
- "type": "string",
- "city": "string",
- "country": "string",
- "state": "string",
- "addressStreet": "string",
- "personName": "string",
- "personIdentification": "string",
- "phone": "string",
- "addressHuman": "string",
- "addressGeo": "string",
- "personEmail": "string",
- "instructions": "string",
- "latitude": 0,
- "longitude": 0
}
], - "items": [
- {
- "weight": 1.5,
- "height": 1.5,
- "width": 1.5,
- "depth": 1.5,
- "idItemCategory": 0,
- "idCapacity": 0,
- "value": 0,
- "fragile": true
}
], - "deliveryTime": "string",
- "isTest": true,
- "idStore": 0,
- "collectMoney": 0,
- "lineBusiness": "string"
}
{- "messages": [
- "string"
], - "status": 0,
- "data": {
- "results": [
- {
- "idCourier": 0,
- "type": "COURIER",
- "name": "string",
- "pathImage": "string",
- "pricing": {
- "idPricingSchemeDetail": [
- 0
], - "time": "string",
- "timeInNumber": 0,
- "startTimeInNumber": 0,
- "endTimeInNumber": 0,
- "distance": 0,
- "price": 0,
- "nameAreaOrigin": "string",
- "idAreaOrigin": 0,
- "nameAreaDestination": "string",
- "idAreaDestination": 0,
- "pickUpAtOrigin": true,
- "dropOffAtDestination": true,
- "liveTrackingAtOrigin": true,
- "liveTrackingAtDestination": true,
- "traditional": true,
- "metadata": "string"
}, - "paymentsAvailable": [
- {
- "idPaymentType": 0,
- "paymentType": "string",
- "paymentCode": "string"
}
], - "traditional": true,
- "vacation": true,
- "cheapest": true,
- "fastest": true,
- "recommended": true
}
], - "distance": 0
}
}
Este método te permite visualizar todos los envíos realizados por el usuario.
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/delivery/"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2dhYnJpZWxfNiIsImlhdCI6MTY1NzgwOTQ2MSwiZXhwIjoxNjU4NDE0MjYxfQ.N_rPvlIFgpj_mK8mcWzDbKEgud6bJeSNc5cOKqzyYTvWeCqStlzUCQjeyoNt98GwqpEU-4jdI35jMk83bahzpg"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "size": 7,
- "deliveries": [
- {
- "idDelivery": 163,
- "idPaymentType": 2,
- "idDeliveryType": 2,
- "deliveryType": "Envío Simple",
- "code": "d9e43729-c8a0-40a2-95d7-fb9076780353",
- "codeShort": "4A3128E996A7",
- "deliveryTime": "2022-06-08T17:15:53.000+00:00",
- "deliveryTimeInMillis": 1660066553940,
- "estimatedDeliveryTimeInMillis": 0,
- "scheduledDeliveryTimeInMillis": 0,
- "idCapacity": 0,
- "baseRatePickup": 0,
- "distance": 6136,
- "discount": 0,
- "height": 1,
- "weight": 1,
- "depth": 1,
- "width": 1,
- "total": 29.8,
- "description": "Con descripcion",
- "notificationMail": "agarciadarce@gmail.com",
- "active": true,
- "origin": "store_api",
- "receiver": "courier",
- "idStatusDelivery": 2,
- "dateCreation": "2022-06-23T20:39:39.157+00:00",
- "dateLastUpdate": "2022-06-23T20:39:39.157+00:00",
- "paymentTypes": {
- "idPaymentType": 2,
- "code": "BOLSON",
- "name": "Bolsón de crédito",
- "description": "Habilitado por los couriers"
}, - "capacity": {
- "idCapacity": 0,
- "name": "Tizo Small"
}, - "statusDelivery": {
- "idStatusDelivery": 2,
- "name": "Finished",
- "code": "FINISHED"
}, - "items": [
- {
- "idDeliveryItem": 274,
- "idDelivery": 304,
- "idItemCategory": 0,
- "categoryName": "Otros",
- "code": "9da503c8-9bfd-41a1-b420-26f94d28f367",
- "categoryOther": "M",
- "name": "Paquete numero uno",
- "description": "Una escoba con gaseosa.",
- "quantity": 1,
- "document": false,
- "fragile": false,
- "value": 50,
- "height": 1,
- "weight": 1,
- "depth": 1,
- "width": 1,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "deliveryItemsFiles": [
- {
- "idDeliveryItemFile": 200,
- "idDeliveryItem": 166,
- "fileName": "/home/juan/Documentos/archivo.pdf"
}
]
}
], - "steps": [
- {
- "idStepDelivery": 167,
- "idStepDeliveries": 36,
- "idDelivery": 163,
- "name": "DELIVERY_CREATED",
- "description": "Envío creado",
- "stepsDeliveries": {
- "idStepDeliveries": 36,
- "name": "Orden creada",
- "code": "CREATED",
- "type": 0
}, - "dateCreation": "2022-06-23T20:39:39.157+00:00",
- "dateCreationInMillis": "2022-06-23T20:39:39.157+00:00",
- "dateLastUpdate": "2022-06-23T20:39:39.157+00:00"
}
], - "waypoints": [
- {
- "idDeliveryWaypoint": 299,
- "idDelivery": 163,
- "type": "PICK-UP",
- "city": "Managua",
- "addressStreet": "Miguel Gutierrez",
- "addressHuman": "Tamarindo",
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "phone": "8888-8838",
- "personName": "John",
- "personEmail": "john.smith@example.com",
- "instructions": "Arbol de mango",
- "latitude": 12.121212,
- "longitude": -12.121212,
- "personIdentification": "001-061199-1009L",
- "arrivalOrder": 1,
- "country": "Nicaragua",
- "state": "Managua",
- "courierAreaWaypoints": {
- "idCourierAreaWaypoint": "Managua",
- "idDeliveryWaypoint": "Managua",
- "idCourierArea": "Managua",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}, - "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
], - "relationCouriers": {
- "idDeliveryCourier": 166,
- "idDelivery": 166,
- "idCourier": 166,
- "courier": {
- "idCourier": 299,
- "dba": "Empresa de logistica",
- "name": "Tizo",
- "description": "Cargo de prueba",
- "commission": 0.5,
- "phone": 50578457845,
- "email": "tizo@tizo.app",
- "traditional": true,
- "vacation": true,
- "isPrivate": false,
- "providerApi": true,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}, - "relationCustomer": null,
- "relationDrivers": null,
- "relationVendors": null,
- "relationStoreApi": {
- "idDeliveryVendor": 166,
- "idDelivery": 166,
- "idStoreApi": 166,
- "idStoreBranch": 166,
- "rating": 2,
- "comment": "Hola",
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "storeApi": {
- "idStoreApi": 19,
- "idStore": 16,
- "username": "store_2",
- "email": "john.smith@example.com",
- "active": true,
- "loginLastUpdate": "2022-07-12T19:05:37.403+00:00",
- "dateCreation": "2022-06-21T16:13:09.567+00:00",
- "dateLastUpdate": "2022-06-21T16:13:09.567+00:00",
- "store": {
- "idStore": 16,
- "name": "Tizo Bodegon",
- "dba": "Tizo S.A.",
- "description": "Empresa de almacenamiento",
- "phone": 50578457845,
- "email": "tizo@tizo.app",
- "ruc": "J00000022M",
- "vacation": true,
- "isPrivate": false,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}, - "storesBranch": {
- "idStoreBranch": 19,
- "idStore": 19,
- "name": "Tizo Bodegon",
- "idMunicipality": 19,
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "phone": "8888-8838",
- "addressHuman": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "latitude": 12.121212,
- "longitude": 12.121212,
- "active": true,
- "vacation": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00",
- "store": {
- "idStore": 16,
- "name": "Tizo Bodegon",
- "dba": "Tizo S.A.",
- "description": "Empresa de almacenamiento",
- "phone": 50578457845,
- "email": "tizo@tizo.app",
- "ruc": "J00000022M",
- "vacation": true,
- "isPrivate": false,
- "active": true,
- "dateCreation": "2022-06-08T17:15:53.000+00:00",
- "dateLastUpdate": "2022-06-08T17:15:53.000+00:00"
}
}
}, - "relationInvoices": null,
- "relationLogistics": null,
- "relationManagers": null
}
]
}, - "message": "Envíos encontrados",
- "status": 200
}
Este método te permite buscar un estado del envío por medio de su Id y devuelve los datos del mismo.
idStatusDelivery required | string ID del estado del envío |
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/system-data/status-deliveries/1/"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoic3RvcmVfYXBpIiwidXNlcm5hbWUiOiJzdG9yZV8yIiwiaWF0IjoxNjU4MTU0Mjc3LCJleHAiOjE2NTg3NTkwNzd9.u6b7ap-7vYikiIBwJ8ugj7rTM_0nVkuMXVlI-Mz7ayXmPT661F9--p-QfbcOcPtewQliHWqktS5P8YYNgPH3uA"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "statusDeliveries": {
- "idStatusDelivery": 1,
- "name": "In process",
- "code": "IN-PROCESS",
- "dateCreation": "2022-06-02T15:47:02.797+00:00",
- "dateLastUpdate": "2022-06-07T19:26:22.807+00:00"
}
}, - "message": "Estado del envío encontrado",
- "status": 200
}
Este método te permite buscar un paso del envío por medio de su Id y devuelve los datos del mismo.
idStepDeliveries required | string ID del paso del envío |
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/system-data/steps-deliveries/36/"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoic3RvcmVfYXBpIiwidXNlcm5hbWUiOiJzdG9yZV8yIiwiaWF0IjoxNjU4MTU0Mjc3LCJleHAiOjE2NTg3NTkwNzd9.u6b7ap-7vYikiIBwJ8ugj7rTM_0nVkuMXVlI-Mz7ayXmPT661F9--p-QfbcOcPtewQliHWqktS5P8YYNgPH3uA"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "stepsDeliveries": {
- "idStepsDeliveries": 36,
- "name": "Orden creada",
- "code": "CREATED",
- "type": 0,
- "active": true,
- "dateCreation": "2022-06-02T15:47:02.797+00:00",
- "dateLastUpdate": "2022-06-07T19:26:22.807+00:00"
}
}, - "message": "Paso del envío encontrado",
- "status": 200
}
Este método te permite visualizar todos las capacidades de envío registrados en el sistema.
Este método no solicita ningún dato de entrada
var client = new RestClient("http://staging-api.tizo.co/api/v1/system-data/capacities/"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2FkcmlhbmFfOSIsImlhdCI6MTY4NjU4MzM4MCwiZXhwIjoxNjkxODY3MzgwfQ.8AaS0pzsWQhar3y-c04gXiZUQ18K5voz2n_8G0SFItXgnp21kb9Eg-0a27dCEVAL60f0fU6gLhoJeKouEBufFg"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "count": 14,
- "capacities": {
- "idCapacity": 36,
- "name": "El Mini",
- "code": "TS",
- "description": "Ej: Celulares, cargadores, vasos, etc.",
- "maxWeight": 5,
- "maxDepth": 35,
- "maxWidth": 45,
- "maxHeight": 16,
- "dateCreation": "2022-03-30T15:17:56.793+00:00",
- "dateLastUpdate": "2022-05-09T00:10:50.733+00:00",
- "active": true,
- "select": false
}
}, - "message": "Paso del envío encontrado",
- "status": 200
}
Este método te permite visualizar todos las capacidades de envío que pertenecen a una categoría seleccionada.
Este método no solicita ningún dato de entrada
var client = new RestClient("http://staging-api.tizo.co/api/v1/system-data/item-categories/5/capacities/"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2FkcmlhbmFfOSIsImlhdCI6MTY4NjU4MzM4MCwiZXhwIjoxNjkxODY3MzgwfQ.8AaS0pzsWQhar3y-c04gXiZUQ18K5voz2n_8G0SFItXgnp21kb9Eg-0a27dCEVAL60f0fU6gLhoJeKouEBufFg"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "capacities": {
- "idCapacity": 36,
- "name": "El Mini",
- "code": "TS",
- "description": "Ej: Celulares, cargadores, vasos, etc.",
- "maxWeight": 5,
- "maxDepth": 35,
- "maxWidth": 45,
- "maxHeight": 16,
- "dateCreation": "2022-03-30T15:17:56.793+00:00",
- "dateLastUpdate": "2022-05-09T00:10:50.733+00:00",
- "active": true,
- "select": false
}
}, - "message": "Item Category capacity retrieved successfully",
- "status": 200
}
Este método te permite visualizar todas las categorías de los paquetes existentes.
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/system-data/item-categories/"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2F4ZWxfOSIsImlhdCI6MTY1ODE2NDM4OCwiZXhwIjoxNjU4NzY5MTg4fQ.vvLtYB4O73futNvwzTZt2LhFzNV--XvMfTT5-62YWtxX-9CY6X4-UtIVDkCR_MX4YqX83AcCXiquHAb8uNHIjw"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "itemCategory": [
- {
- "idItemCategory": 1,
- "idParentCategory": 0,
- "name": "Categoría 1",
- "active": true,
- "dateCreation": "2022-06-02T15:47:02.797+00:00",
- "dateLastUpdate": "2022-06-07T19:26:22.807+00:00"
}
], - "count": 24
}, - "message": "Lista de categorías de paquetes encontrados",
- "status": 200
}
Este método te permite visualizar todos los estados de envíos registrados en el sistema.
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/system-data/status-deliveries/"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2F4ZWxfOSIsImlhdCI6MTY1ODE2NDM4OCwiZXhwIjoxNjU4NzY5MTg4fQ.vvLtYB4O73futNvwzTZt2LhFzNV--XvMfTT5-62YWtxX-9CY6X4-UtIVDkCR_MX4YqX83AcCXiquHAb8uNHIjw"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "statusDeliveries": [
- {
- "idStatusDelivery": 1,
- "name": "Orden creada",
- "code": "CREATED",
- "dateCreation": "2022-06-02T15:47:02.797+00:00",
- "dateLastUpdate": "2022-06-07T19:26:22.807+00:00"
}
], - "count": 7
}, - "message": "Lista de los estados de los envíos encontrados",
- "status": 200
}
Este método te permite visualizar todos los pasos de envíos registrados en el sistema.
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/system-data/steps-deliveries/"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2F4ZWxfOSIsImlhdCI6MTY1ODE2NDM4OCwiZXhwIjoxNjU4NzY5MTg4fQ.vvLtYB4O73futNvwzTZt2LhFzNV--XvMfTT5-62YWtxX-9CY6X4-UtIVDkCR_MX4YqX83AcCXiquHAb8uNHIjw"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "count": 13,
- "stepDeliveries": [
- {
- "idStepDelivery": 1,
- "name": "Orden creada",
- "code": "CREATED",
- "type": 1,
- "dateCreation": "2022-06-02T15:47:02.797+00:00",
- "dateLastUpdate": "2022-06-07T19:26:22.807+00:00",
- "active": true
}
]
}, - "message": "Lista de los pasos de los envíos encontrados",
- "status": 200
}
Este método sirve para actualizar los datos de una sucursal
idStore required | string ID de la tienda |
idBranch required | string ID de la sucursal de la tienda |
Estructura de datos para la actualización de una sucursal
name | string Nombre de la sucursal |
idMunicipality | integer Id de la Municipalidad |
addressGeo | string Direccion de la sucursal |
addressHuman | string Dirección de la sucursal versión Nicaraguense |
latitude | float Latitud de la sucursal |
longitude | float Longitud de la sucursal |
active | boolean Estado de la sucursal de la tienda |
personInCharge | string Persona encargada de la sucursal |
phone | string Teléfono de la sucursal |
{- "name": "name",
- "idMunicipality": 0,
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "addressHuman": "Tamarindo",
- "latitude": 12.121212,
- "longitude": -12.121212,
- "active": true,
- "personInCharge": "Juan Perez",
- "phone": "8884-2939"
}
{- "data": {
- "branch": {
- "idStoreBranch": 1,
- "idStore": 1,
- "name": "string",
- "idMunicipality": 1,
- "phone": "8884-2939",
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "addressHuman": "Tamarindo",
- "latitude": 12.121212,
- "longitude": -12.121212,
- "active": true,
- "vacation": true,
- "personInCharge": "Juan Perez",
- "dateCreation": "2022-05-06T23:00:52.670+00:00",
- "dateLastUpdate": "2022-05-06T23:00:52.670+00:00"
}
}, - "message": "Sucursal actualizada con éxito",
- "status": 200
}
Este método sirve para buscar una sucursal por medio del ID y mostrar sus datos.
idStore required | string ID de la tienda |
idBranch required | string ID de la sucursal de la tienda |
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/vendors/stores/:idStore/branches/:idBranch/"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2dhYnJpZWxfNiIsImlhdCI6MTY1NzgwOTQ2MSwiZXhwIjoxNjU4NDE0MjYxfQ.N_rPvlIFgpj_mK8mcWzDbKEgud6bJeSNc5cOKqzyYTvWeCqStlzUCQjeyoNt98GwqpEU-4jdI35jMk83bahzpg"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "branch": {
- "idStoreBranch": 1,
- "idStore": 1,
- "name": "string",
- "idMunicipality": 1,
- "phone": "8884-2939",
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "addressHuman": "Tamarindo",
- "latitude": 12.121212,
- "longitude": -12.121212,
- "active": true,
- "vacation": true,
- "personInCharge": "Juan Perez",
- "dateCreation": "2022-05-06T23:00:52.670+00:00",
- "dateLastUpdate": "2022-05-06T23:00:52.670+00:00"
}
}, - "message": "Sucursal actualizada con éxito",
- "status": 200
}
Este método sirve para eliminar una de las sucursales existentes que tenga una tienda
idStore required | string ID de la tienda |
idBranch required | string ID de la sucursal de la tienda |
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/vendors/stores/:idStore/branches/:idBranch/"); client.Timeout = -1; var request = new RestRequest(Method.DELETE); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2F4ZWxfOSIsImlhdCI6MTY1ODE2NDM4OCwiZXhwIjoxNjU4NzY5MTg4fQ.vvLtYB4O73futNvwzTZt2LhFzNV--XvMfTT5-62YWtxX-9CY6X4-UtIVDkCR_MX4YqX83AcCXiquHAb8uNHIjw"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "message": "Sucursal eliminada con éxito",
- "status": 200
}
Este método sirve para visualizar todas las sucursales que tiene una tienda
idStore required | string ID de la tienda |
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/vendors/stores/0/branches"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2dhYnJpZWxfNiIsImlhdCI6MTY1NzgwOTQ2MSwiZXhwIjoxNjU4NDE0MjYxfQ.N_rPvlIFgpj_mK8mcWzDbKEgud6bJeSNc5cOKqzyYTvWeCqStlzUCQjeyoNt98GwqpEU-4jdI35jMk83bahzpg"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "count": 2,
- "branches": [
- {
- "idStoreBranch": 1,
- "idStore": 1,
- "name": "string",
- "idMunicipality": 1,
- "phone": "8884-2939",
- "addressGeo": "De la rotonda de Rubén Darío 1c al sur, 2c abajo, Managua 14003, Nicaragua",
- "addressHuman": "Tamarindo",
- "latitude": 12.121212,
- "longitude": -12.121212,
- "active": true,
- "vacation": true,
- "personInCharge": "Juan Perez",
- "dateCreation": "2022-05-06T23:00:52.670+00:00",
- "dateLastUpdate": "2022-05-06T23:00:52.670+00:00"
}
]
}, - "message": "Sucursal encontrada con éxito.",
- "status": 200
}
Este método sirve para buscar la bolsa de crédito de una tienda
idStore required | string ID de la tienda |
Este método no solicita ningún dato de entrada
var client = new RestClient("https://staging-api.tizo.co/api/v1/vendors/stores/0/credit-bag/"); client.Timeout = -1; var request = new RestRequest(Method.GET); request.AddHeader("Authorization", "eyJhbGciOiJIUzUxMiJ9.eyJyb2xlIjoidmVuZG9yIiwidXNlcm5hbWUiOiJ2X2F4ZWxfOSIsImlhdCI6MTY1ODMyNzMzMywiZXhwIjoxNjU4OTMyMTMzfQ.JB8oNrBgDqQyymETvZBarNQjs6vRx-zdwVnGvjlqLdB7GgtI8B-yj7haPdqG0OSrFltgMp2HN5msNR268qJlxw"); IRestResponse response = client.Execute(request); Console.WriteLine(response.Content);
{- "data": {
- "storeCreditBag": {
- "idStoreCreditBag": 2,
- "idStore": 2,
- "amount": "$100",
- "slackAmount": "$100",
- "slackDays": 2,
- "amountAvailable": "$100",
- "lastPaymentDate": "2022-05-06",
- "cutoffDate": "2022-05-06T23:00:52.670+00:00",
- "cutoffPayDate": "2022-05-06T23:00:52.670+00:00",
- "daysToPay": 2,
- "dateCreation": "2022-05-06T23:00:52.670+00:00",
- "dateLastUpdate": "2022-05-06T23:00:52.670+00:00"
}
}, - "message": "Success",
- "status": 200
}
Este método sirve para crear nuevos Productos
Estructura de datos para la creación de los productos
object | |
Array of objects |
{- "productInfo": {
- "name": "string",
- "brand": "string",
- "shortDescription": "string",
- "longDescription": "string",
- "warranty": 0,
- "warrantyPdf": "string",
- "promotion": true,
- "preparationTimeType": " Minuto, Hora, Día, Semana",
- "preparationTimeDuration": 0,
- "specialTape": "string",
- "idCategory": 0,
- "idStore": 0,
- "returnInterval": 0,
- "replacementInterval": 0,
- "digitalProductNote": 0,
- "selfPickup": true
}, - "productOptionsPricing": [
- {
- "productOptionKeyValueInList": [
- {
- "key": "string",
- "value": "string"
}
], - "idCapacity": 0,
- "productionQuantitiesList": [
- {
- "idBranch": 0,
- "quantity": 0
}
], - "cost": 0,
- "price": 0,
- "discountPercentage": 0,
- "lotNumber": "string",
- "productOptionOfferIn": {
- "offer": 0,
- "endDate": "2024-10-17T17:22:34.228Z"
}, - "width": 0,
- "height": 0,
- "weight": 0,
- "depth": 0,
- "digitalProductPathLink": "string",
- "skuCode": "string",
- "digitalProductQuantity": 0
}
]
}
{- "productInfo": {
- "name": "string",
- "brand": "string",
- "shortDescription": "string",
- "longDescription": "string",
- "warranty": 0,
- "warrantyPdf": "string",
- "promotion": true,
- "preparationTimeType": " Minuto, Hora, Día, Semana",
- "preparationTimeDuration": 0,
- "specialTape": "string",
- "idCategory": 0,
- "idStore": 0,
- "returnInterval": 0,
- "replacementInterval": 0,
- "digitalProductNote": 0,
- "selfPickup": true
}, - "productOptionsPricing": [
- {
- "productOptionKeyValueInList": [
- {
- "key": "string",
- "value": "string"
}
], - "idCapacity": 0,
- "productionQuantitiesList": [
- {
- "idBranch": 0,
- "quantity": 0
}
], - "cost": 0,
- "price": 0,
- "discountPercentage": 0,
- "lotNumber": "string",
- "productOptionOfferIn": {
- "offer": 0,
- "endDate": "2024-10-17T17:22:34.228Z"
}, - "width": 0,
- "height": 0,
- "weight": 0,
- "depth": 0,
- "digitalProductPathLink": "string",
- "skuCode": "string",
- "digitalProductQuantity": 0
}
]
}
Este método sirve para actualizacion nuevos Productos
Estructura de datos para la Actualizacion de los productos
object | |
Array of objects |
{- "productInfo": {
- "name": "string",
- "brand": "string",
- "shortDescription": "string",
- "longDescription": "string",
- "warranty": 0,
- "warrantyPdf": "string",
- "promotion": true,
- "preparationTimeType": " Minuto, Hora, Día, Semana;",
- "preparationTimeDuration": 0,
- "specialTape": "string",
- "idCategory": 1,
- "idStore": 1,
- "returnReplacement": 0,
- "returnInterval": 0,
- "replacementInterval": 0,
- "digitalProductNote": 0,
- "digital": true,
- "selfPickup": true
}, - "productOptionsPricing": [
- {
- "productOptionKeyValueInList": [
- {
- "idProductOptionKeyValue": 0,
- "key": "string",
- "value": "string"
}
], - "productionQuantitiesList": [
- {
- "idProductOptionsInventory": 0,
- "idBranch": 0,
- "quantity": 0
}
], - "idProductOptions": 0,
- "idCapacity": 0,
- "cost": 0,
- "price": 0,
- "discountPercentage": 100,
- "tax": 0,
- "lotNumber": "string",
- "productOptionOfferInUpdatedDto": {
- "idProductOptionOffer": 0,
- "offer": 0,
- "endDate": "2024-10-17T17:30:13.920Z"
}, - "width": 0,
- "height": 0,
- "weight": 0,
- "depth": 0,
- "digitalProductPathLink": "string",
- "skuCode": "string",
- "digitalProductQuantity": 0
}
]
}
{- "productInfo": {
- "name": "string",
- "brand": "string",
- "shortDescription": "string",
- "longDescription": "string",
- "warranty": 0,
- "warrantyPdf": "string",
- "promotion": true,
- "preparationTimeType": " Minuto, Hora, Día, Semana;",
- "preparationTimeDuration": 0,
- "specialTape": "string",
- "idCategory": 1,
- "idStore": 1,
- "returnReplacement": 0,
- "returnInterval": 0,
- "replacementInterval": 0,
- "digitalProductNote": 0,
- "digital": true,
- "selfPickup": true
}, - "productOptionsPricing": [
- {
- "productOptionKeyValueInList": [
- {
- "idProductOptionKeyValue": 0,
- "key": "string",
- "value": "string"
}
], - "productionQuantitiesList": [
- {
- "idProductOptionsInventory": 0,
- "idBranch": 0,
- "quantity": 0
}
], - "idProductOptions": 0,
- "idCapacity": 0,
- "cost": 0,
- "price": 0,
- "discountPercentage": 100,
- "tax": 0,
- "lotNumber": "string",
- "productOptionOfferInUpdatedDto": {
- "idProductOptionOffer": 0,
- "offer": 0,
- "endDate": "2024-10-17T17:30:13.920Z"
}, - "width": 0,
- "height": 0,
- "weight": 0,
- "depth": 0,
- "digitalProductPathLink": "string",
- "skuCode": "string",
- "digitalProductQuantity": 0
}
]
}
Este método sirve para Listar nuevos Productos
Estructura de datos para la lista de los productos
Array of objects | |
total | integer Total de productos |
page | integer Página actual |
size | integer Cantidad de productos por página |
totalPages | integer Total de páginas |
messages | Array of strings |
{- "data": [
- {
- "idProduct": 0,
- "name": "string",
- "brand": "string",
- "shortDescription": "string",
- "longDescription": "string",
- "warranty": 0,
- "warrantyPdf": "string",
- "promotion": true,
- "preparationTimeType": "string",
- "preparationTimeDuration": 0,
- "specialTape": "string",
- "idCategory": 0,
- "nameCategory": "string",
- "returnReplacement": 0,
- "returnInterval": 0,
- "replacementInterval": 0,
- "digitalProductNote": 0,
- "productOptions": [
- {
- "productKeyValues": [
- {
- "idProductOptionKeyValue": 0,
- "key": "string",
- "value": "string"
}
], - "productOptionInventory": [
- {
- "idProductOptionsInventory": 0,
- "quantity": 0,
- "branch": 0
}
]
}
], - "idProductOptions": 0,
- "idProductOffer": 0,
- "digital": true,
- "selfPickup": true
}
], - "total": 0,
- "page": 0,
- "size": 0,
- "totalPages": 0,
- "messages": [
- "string"
]
}
{- "data": [
- {
- "idProduct": 0,
- "name": "string",
- "brand": "string",
- "shortDescription": "string",
- "longDescription": "string",
- "warranty": 0,
- "warrantyPdf": "string",
- "promotion": true,
- "preparationTimeType": "string",
- "preparationTimeDuration": 0,
- "specialTape": "string",
- "idCategory": 0,
- "nameCategory": "string",
- "returnReplacement": 0,
- "returnInterval": 0,
- "replacementInterval": 0,
- "digitalProductNote": 0,
- "productOptions": [
- {
- "productKeyValues": [
- {
- "idProductOptionKeyValue": 0,
- "key": "string",
- "value": "string"
}
], - "productOptionInventory": [
- {
- "idProductOptionsInventory": 0,
- "quantity": 0,
- "branch": 0
}
]
}
], - "idProductOptions": 0,
- "idProductOffer": 0,
- "digital": true,
- "selfPickup": true
}
], - "total": 0,
- "page": 0,
- "size": 0,
- "totalPages": 0,
- "messages": [
- "string"
]
}