Introducción

Conexión

Todos los productos de Yuju pueden accederse a través de una misma conexión, utilizando una sola autentificación.

Producción/Sandbox

Ofrecemos el mismo entorno para Producción y Sandbox. Puedes hacer tus implementaciones directamente en tu cuenta de Yuju. Cada Marketplace que utilices para vender tendrá su propia cuenta de Sandbox. Contáctanos para tener el login y API Key de estas cuentas.

Lenguajes y Limitaciones

La API de Yuju funciona como un Web Service en dónde no es necesario escribir un script o programa. Todos los lenguajes de programación tienen la capacidad de consumir la API.

¿Cúal es la estructura de la API?

La API sigue el flujo principal de la plataforma:

Tiendas:

  • Cada cuenta de Yuju tiene por default una tienda creada.
  • En caso de tener varios sitios/sucursales puedes agregar varias tiendas dentro de la misma cuenta de Yuju.

Productos:

  • Cada producto pertenece al menos a una tienda.

Órdenes:

  • Todas las Órdenes a través de todos los marketplaces se encuentran dentro de la sección de “ventas” accesible a través de la API.
  • Cada Orden está ligada a una Tienda dentro de Yuju y a su vez a un Marketplace

Feed (tareas):

  • Asociados, de momento, únicamente a los productos.
  • Cada modificación o inserción de un producto genera una tarea.
  • La lista de tareas incluye los ids y estados de las tareas, una vez que la tarea se ha finalizado en los detalles se puede ver si la tarea se ha completado bien o si ha ocurrido un error.

Autentificación

La Autentificación se envía a través de la cabecera Authorization de la petición. Sigue el siguiente formato:

Authorization: Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b

Para obtener el token:

  • Iniciar sesión en Yuju
  • Configuración de Cuenta
  • Generar Token

El token se tienen que mandar en todas las peticiones. Ejemplo del request:

GET https://api.software.madkting.com/shops/ HTTP/1.1
Accept: application/json
Authorization: Token 54f2d8bcfc49e7821da31a83ab95e40213c0a5c1

Uso de la API

La API permite tener una conexión con todos los servicios de Yuju

Conectarte con esta API te permitirá:

  • Reflejar en Yuju lo que tienes en el back-office de tu tienda. Esto te permitirá vender tus productos en múltiples marketplaces sin necesidad de desarrollar las conexiones de cada seller center de cada marketplace. Aprovecha la conexión con Yuju!
  • Crear, modificar y eliminar productos en Yuju.
  • Definir y cambiar los status de los productos (activar, desactivar, desindexar)
  • Actualizar (o sincronizar) la información de los productos que tengas en Yuju.
  • De igual manera con las tiendas y las órdenes.

Paginación

La petición puede regresar varios objetos. Por default, la paginación regresa 30 objetos con un maximo de 100.

Es posible especificar la página con el parámetro ?page o cambiar el número de objetos con el parámetro ?page_size.

La información sobre la paginación de las peticiones se incluye en el link header. La respuesta del Link puede tener uno o más enlaces dependiendo del número de páginas de la petición. En caso de no tener un enlace es posible que la petición no cuente con páginas o la página de respuesta sea la única.

Ejemplo estructura Link:

<https://api.software.madkting.com/resource/?page=2>; rel="next",
<https://api.software.madkting.com/resource/?page=1>; rel="prev"

Los posibles valores de rel pueden ser:

  • next - Siguiente página de la petición
  • prev - Anterior página de la petición

Cabeceras de la Paginación

  • X-Pagination-Total-Count - Número de elementos en la petición
  • X-Pagination-Page-Count - Número de elementos de la página
  • X-Pagination-Current-Page - Índice de la página actual
  • X-Pagination-Per-Page - Número de elementos por página

NOTA: Todos las urls deben terminar con diagonal(/)

Resources

get /shops/{shop_pk}/products/

Listado de productos  

Este recurso requiere autentificación

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
Query
pagenumber

Número de página

page_sizenumber

Número de elementos

Default value: 30

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

GET \
  -H "Authorization: <value>" \
  https://api.software.madkting.com/shops/{shop_pk}/products/?page=<value>&page_size=<value>

200 OK chevron_right expand_more

application/json

application/json

type

type

ParameterTypeDescription
[] Productobject

Additional properties: Yes

Inherits: Variation

[].channel_fields*object

Additional properties: Yes

[].channel_fields.general*object

Campos generales por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsGral

[].channel_fields.general.stockstring
[].channel_fields.general.barcodestring
[].channel_fields.general.barcode_typestring
Enum:
  • ean
  • upc
  • jan
  • gtin
  • isbn_10
  • isbn_13
  • sku
[].channel_fields.general.namestring
[].channel_fields.general.pricestring
[].channel_fields.general.shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
[].channel_fields.general.shipping_pricestring
[].channel_fields.general.descriptionstring
[].channel_fields.general.characteristicsstring
[].channel_fields.general.brandstring
[].channel_fields.custom*object

Campos únicos por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsCustom

[].channel_fields.custom.7* Amazonobject

Additional properties: Yes

[].channel_fields.custom.7.declared_hazmatstring

Declaración de materiales que necesitan manejo especial

Enum:
  • ghs - GHS (Globally Harmonized System)
  • transportation - Transportation
  • other - Otro
  • not_applicable - No aplica
  • waste - Waste
  • Storage - Storage
[].channel_fields.custom.7.fulfillment_activatestring

Manage Fulfillment by Amazon (FBA)

Enum:
  • activate_only_fbc - Activar FBA y desactivar FBM
  • activate_only_fbm - Activar FBM y desactivar FBA
[].channel_fields.custom.7.shipping_groupstring

Plantilla de Envío de Amazon

[].channel_fields.custom.7.custom_variation_tostring

Set Custom Variation to

Enum:
  • size - Size
  • color - Color
[].channel_fields.custom.7.discount_fromstring

Fecha de inicio

[].channel_fields.custom.7.discountnumber

Descuento

Format: float

[].channel_fields.custom.7.discount_tostring

Fecha final

[].channel_fields.custom.7.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.12* Linio Méxicoobject

Additional properties: Yes

[].channel_fields.custom.12.discount_fromstring

Fecha de inicio

[].channel_fields.custom.12.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.12.discount_tostring

Fecha final

[].channel_fields.custom.12.discountnumber

Descuento

Format: float

[].channel_fields.custom.13* Mercado Libre Méxicoobject

Additional properties: Yes

[].channel_fields.custom.13.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.13.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.13.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.13.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.13.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.13.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.13.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.15* Mercado Libre Colombiaobject

Additional properties: Yes

[].channel_fields.custom.15.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.15.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.15.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.15.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.15.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.15.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.15.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.16* Mercado Libre CBTobject

Additional properties: Yes

[].channel_fields.custom.16.price_clnumber

Precio Chile

Format: float

[].channel_fields.custom.16.price_conumber

Precio Colombia

Format: float

[].channel_fields.custom.16.price_mxnumber

Precio México

Format: float

[].channel_fields.custom.16.price_arnumber

Precio Argentina

Format: float

[].channel_fields.custom.16.price_brnumber

Precio Brasil

Format: float

[].channel_fields.custom.17* Linio Colombiaobject

Additional properties: Yes

[].channel_fields.custom.17.discount_fromstring

Fecha de inicio

[].channel_fields.custom.17.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.17.discount_tostring

Fecha final

[].channel_fields.custom.17.discountnumber

Descuento

Format: float

[].channel_fields.custom.1203* Linio Argentinaobject

Additional properties: Yes

[].channel_fields.custom.1203.discount_fromstring

Fecha de inicio

[].channel_fields.custom.1203.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.1203.discount_tostring

Fecha final

[].channel_fields.custom.1203.discountnumber

Descuento

Format: float

[].channel_fields.custom.1204* Linio Chileobject

Additional properties: Yes

[].channel_fields.custom.1204.discount_fromstring

Fecha de inicio

[].channel_fields.custom.1204.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.1204.discount_tostring

Fecha final

[].channel_fields.custom.1204.discountnumber

Descuento

Format: float

[].channel_fields.custom.1221* Dafiti Colombiaobject

Additional properties: Yes

[].channel_fields.custom.1221.discount_fromstring

Fecha de inicio

[].channel_fields.custom.1221.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.1221.discount_tostring

Fecha final

[].channel_fields.custom.1221.discountnumber

Descuento

Format: float

[].channel_fields.custom.1301* Mercado Libre Argentinaobject

Additional properties: Yes

[].channel_fields.custom.1301.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1301.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1301.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1301.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1301.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1301.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1301.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1302* Mercado Libre Chileobject

Additional properties: Yes

[].channel_fields.custom.1302.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1302.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1302.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1302.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1302.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1302.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1302.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1303* Mercado Libre Uruguayobject

Additional properties: Yes

[].channel_fields.custom.1303.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1303.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1303.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1303.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1303.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1303.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1303.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1304* Mercado Libre Ecuadorobject

Additional properties: Yes

[].channel_fields.custom.1304.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1304.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1304.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1304.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1304.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1304.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1304.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1305* Mercado Libre Peruobject

Additional properties: Yes

[].channel_fields.custom.1305.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1305.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1305.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1305.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1305.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1305.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1305.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1901* Shopifyobject

Additional properties: Yes

[].channel_fields.custom.1901.discountnumber

Descuento

Format: float

[].channel_fields.custom.1901.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.2101* Walmartobject

Additional properties: Yes

[].channel_fields.custom.2101.discount_fromstring

Descuento desde

[].channel_fields.custom.2101.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje
  • fixed - Precio fijo
[].channel_fields.custom.2101.discount_tostring

Descuento hasta

[].channel_fields.custom.2101.discountnumber

Descuento

Format: float

[].channel_fields.custom.2201* Claro Shopobject

Additional properties: Yes

[].channel_fields.custom.2201.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
[].channel_fields.custom.2201.discountnumber

Descuento

Format: float

[].channel_fields.custom.2201.tagsstring

Tags

[].channel_fields.custom.2201.delivery_timenumber

Tiempo de envío

[].channel_fields.custom.2201.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.2401* Liverpoolobject

Additional properties: Yes

[].channel_fields.custom.2401.discount_fromstring

Descuento desde

[].channel_fields.custom.2401.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.2401.discount_tostring

Descuento hasta

[].channel_fields.custom.2401.discountnumber

Descuento

Format: float

[].channel_fields.custom.2501* Wishobject

Additional properties: Yes

[].channel_fields.custom.2501.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
[].channel_fields.custom.2501.wish_expressboolean

Habilitar Wish Express

[].channel_fields.custom.2501.delivery_timestring

Tiempo de envío

[].channel_fields.custom.2501.tagsstring

Tags

[].pk*string

Identificador del producto en Yuju

[].sku*string

Max. length: 40

[].stock*number

Format: int

[].price*number

Format: float

[].colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
[].color_textstring
[].secondary_colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
[].sizestring
[].asinstring
[].eanstring
[].upcstring
[].isbn_10string
[].isbn_13string
[].mpnstring
[].msrpnumber

Format: float

[].part_numberstring
[].scentstring
[].product_weightstring
[].janstring
[].custom_variation_valuestring

Max. length: 100

[].custom_i1number

Format: int

[].custom_i2number

Format: int

[].custom_i3number

Format: int

[].custom_i4number

Format: int

[].custom_i5number

Format: int

[].custom_s1string

Max. length: 200

[].custom_s2string

Max. length: 200

[].custom_s3string

Max. length: 200

[].custom_s4string

Max. length: 200

[].custom_s5string

Max. length: 200

[].custom_f1string
[].custom_f2string
[].custom_f3string
[].custom_f4string
[].custom_f5string
[].net_contentstring
[].name*string
[].brand*string
[].description*string
[].dimensions_unit*string
Enum:
  • cm
  • in
[].category_pk*number

Format: int

[].shipping_depth*number

Format: float

[].shipping_height*number

Format: float

[].shipping_pricenumber

Format: float

[].shipping_width*number

Format: float

[].shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
[].sku_simple*string
[].weight*number

Format: float

[].weight_unit*string
Enum:
  • kg
  • oz
[].genderstring
Enum:
  • baby
  • girl
  • boy
  • male
  • female
  • unisex
[].taxstring
Enum:
  • 0
  • 5
  • 8
  • 10
  • 10.5
  • 16
  • 19
  • 21
[].depthnumber

Format: float

[].heightnumber

Format: float

[].widthnumber

Format: float

[].delivery_timenumber

Format: int

[].official_store_idstring
[].linkstring
[].template_htmlstring
Enum:
  • default_plain_text
[].custom_variation_namestring

Max. length: 60

[].modelstring
[].conditionstring
Enum:
  • new
  • used
  • refurbished
[].availabilitystring
Enum:
  • in_stock
  • out_of_stock
  • preorder
[].characteristicsstring
[].custom_catstring
[].tagsstring
[].cable_lengthnumber

Format: float

[].company_cellphonestring
[].condition_notesstring
[].graphics_brandstring
[].graphics_ram_sizenumber

Format: float

[].graphics_ram_unitstring
Enum:
  • mb
  • gb
[].hard_drive_interfacestring
[].hard_drive_sizenumber

Format: int

[].hard_drive_speedstring
[].hard_drive_typestring
[].hard_drive_unitstring
Enum:
  • pb
  • mb
  • gb
  • tb
[].operating_systemstring
[].package_contentstring
[].processor_brandstring
[].processor_cores_qtynumber

Format: int

[].processor_socketstring
[].processor_speednumber

Format: float

[].processor_speed_unitstring
Enum:
  • mhz
  • ghz
[].processor_typestring
[].ram_sizenumber

Format: float

[].ram_size_unitstring
Enum:
  • kb
  • mb
  • gb
  • tb
[].ram_typestring
[].screen_resolutionstring
[].screen_sizenumber

Format: float

[].screen_typestring
[].shoe_typestring
[].usb_portsnumber

Format: int

[].vga_portsnumber

Format: int

[].hdmi_portsnumber

Format: int

[].volumenumber

Format: float

[].volume_unitstring
Enum:
  • l
  • ml
  • gal
[].youtube_linkstring
[].keywordsstring
[].warrantystring
[].warranty_monthsstring
[].materialstring
[].stylestring
[].artiststring
[].adultstring
[].batteries_includedstring
[].batteries_requiredstring
[].battery_typestring
Enum:
  • a
  • a76
  • aa
  • aaa
  • aaaa
  • c
  • d
  • 9v
  • 12v
  • 2/3a
  • 4/3a
  • 4/5a
  • cr123a
  • cr2
  • cr5
  • L-SC
  • p76
  • lithium_ion
  • lithium_metal
  • product_specific
[].media_formatstring
Enum:
  • blu_ray
  • dvd
  • hd_dvd
  • dvd_r
  • VHStape
  • umd
  • lp_record
  • audioCD
  • dvd_audio
  • cassette
  • videotape
[].suggested_age_minnumber

Format: int

[].suggested_age_maxnumber

Format: int

[].authorstring
[].editorstring
[].editionstring
[].publication_datestring
[].languagestring
[].number_of_pagesstring
[].genrestring
[].composerstring
[].performerstring
[].ethernet_portsnumber

Format: int

[].local_pick_upstring
[].publisherstring
[].book_titlestring
[].bindingstring
Enum:
  • Hardcover
  • Paperback
  • Kindleedition
[].vinyl_detailsstring
Enum:
  • lp
  • ep
  • 45
  • 78
  • 12_single
  • other
[].illustratorstring
[].international_shipping_costnumber

Format: float

[].shipping_cost_mxnumber

Format: float

[].shipping_cost_brnumber

Format: float

[].compatibilitystring
[].battery_capacitystring
[].production_countrynumber

Format: int

Enum:
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
[].circumference_diameterstring
[].adjustable_closingstring
[].sole_typestring
[].characterstring
[].for_walkersstring
[].shoes_by_kitstring
[].number_of_shoes_pairnumber

Format: int

[].connectivitystring
[].outdoor_rangestring
[].indoor_rangestring
[].night_visionstring
[].wifistring
[].color_screenstring
[].shatter_protectionstring
[].scratch_protectionstring
[].diaper_sizestring
[].diaper_typestring
[].perfume_typestring
[].suction_levelsnumber

Format: int

[].massaging_breatshieldstring
[].included_storage_cupsstring
[].waterproofstring
[].max_weightstring
[].one_hand_foldstring
[].security_system_typestring
[].baby_bottle_nipple_hole_sizestring
[].baby_bottle_materialstring
[].baby_bottle_nipple_materialstring
[].functionstring
[].with_fragancestring
[].metal_typestring
[].compatible_brandsstring
[].compatible_modelsstring
[].compatible_linesstring
[].catalog_numberstring
[].linestring
[].custom_product_typestring
[].product_code_satstring
[].providers[]number

Format: int

[].guarantorstring

post /shops/{shop_pk}/products/

Creación de productos  

Sólo durante la creación del producto es permitido envíar dentro del producto las variaciones e imágenes. Esto creará el producto completo sin necesidad de estar creando elemento por elemento.

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

POST \
  -H "Authorization: <value>" \
  -H "Content-type: application/json"
  -d @body.json \
  https://api.software.madkting.com/shops/{shop_pk}/products/

Request Body chevron_right expand_more

application/json

application/json

ParameterTypeDescription
[] Productobject

Additional properties: Yes

Inherits: Variation

[].channel_fields*object

Additional properties: Yes

[].channel_fields.general*object

Campos generales por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsGral

[].channel_fields.general.stockstring
[].channel_fields.general.barcodestring
[].channel_fields.general.barcode_typestring
Enum:
  • ean
  • upc
  • jan
  • gtin
  • isbn_10
  • isbn_13
  • sku
[].channel_fields.general.namestring
[].channel_fields.general.pricestring
[].channel_fields.general.shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
[].channel_fields.general.shipping_pricestring
[].channel_fields.general.descriptionstring
[].channel_fields.general.characteristicsstring
[].channel_fields.general.brandstring
[].channel_fields.custom*object

Campos únicos por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsCustom

[].channel_fields.custom.7* Amazonobject

Additional properties: Yes

[].channel_fields.custom.7.declared_hazmatstring

Declaración de materiales que necesitan manejo especial

Enum:
  • ghs - GHS (Globally Harmonized System)
  • transportation - Transportation
  • other - Otro
  • not_applicable - No aplica
  • waste - Waste
  • Storage - Storage
[].channel_fields.custom.7.fulfillment_activatestring

Manage Fulfillment by Amazon (FBA)

Enum:
  • activate_only_fbc - Activar FBA y desactivar FBM
  • activate_only_fbm - Activar FBM y desactivar FBA
[].channel_fields.custom.7.shipping_groupstring

Plantilla de Envío de Amazon

[].channel_fields.custom.7.custom_variation_tostring

Set Custom Variation to

Enum:
  • size - Size
  • color - Color
[].channel_fields.custom.7.discount_fromstring

Fecha de inicio

[].channel_fields.custom.7.discountnumber

Descuento

Format: float

[].channel_fields.custom.7.discount_tostring

Fecha final

[].channel_fields.custom.7.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.12* Linio Méxicoobject

Additional properties: Yes

[].channel_fields.custom.12.discount_fromstring

Fecha de inicio

[].channel_fields.custom.12.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.12.discount_tostring

Fecha final

[].channel_fields.custom.12.discountnumber

Descuento

Format: float

[].channel_fields.custom.13* Mercado Libre Méxicoobject

Additional properties: Yes

[].channel_fields.custom.13.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.13.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.13.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.13.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.13.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.13.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.13.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.15* Mercado Libre Colombiaobject

Additional properties: Yes

[].channel_fields.custom.15.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.15.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.15.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.15.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.15.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.15.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.15.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.16* Mercado Libre CBTobject

Additional properties: Yes

[].channel_fields.custom.16.price_clnumber

Precio Chile

Format: float

[].channel_fields.custom.16.price_conumber

Precio Colombia

Format: float

[].channel_fields.custom.16.price_mxnumber

Precio México

Format: float

[].channel_fields.custom.16.price_arnumber

Precio Argentina

Format: float

[].channel_fields.custom.16.price_brnumber

Precio Brasil

Format: float

[].channel_fields.custom.17* Linio Colombiaobject

Additional properties: Yes

[].channel_fields.custom.17.discount_fromstring

Fecha de inicio

[].channel_fields.custom.17.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.17.discount_tostring

Fecha final

[].channel_fields.custom.17.discountnumber

Descuento

Format: float

[].channel_fields.custom.1203* Linio Argentinaobject

Additional properties: Yes

[].channel_fields.custom.1203.discount_fromstring

Fecha de inicio

[].channel_fields.custom.1203.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.1203.discount_tostring

Fecha final

[].channel_fields.custom.1203.discountnumber

Descuento

Format: float

[].channel_fields.custom.1204* Linio Chileobject

Additional properties: Yes

[].channel_fields.custom.1204.discount_fromstring

Fecha de inicio

[].channel_fields.custom.1204.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.1204.discount_tostring

Fecha final

[].channel_fields.custom.1204.discountnumber

Descuento

Format: float

[].channel_fields.custom.1221* Dafiti Colombiaobject

Additional properties: Yes

[].channel_fields.custom.1221.discount_fromstring

Fecha de inicio

[].channel_fields.custom.1221.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.1221.discount_tostring

Fecha final

[].channel_fields.custom.1221.discountnumber

Descuento

Format: float

[].channel_fields.custom.1301* Mercado Libre Argentinaobject

Additional properties: Yes

[].channel_fields.custom.1301.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1301.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1301.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1301.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1301.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1301.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1301.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1302* Mercado Libre Chileobject

Additional properties: Yes

[].channel_fields.custom.1302.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1302.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1302.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1302.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1302.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1302.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1302.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1303* Mercado Libre Uruguayobject

Additional properties: Yes

[].channel_fields.custom.1303.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1303.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1303.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1303.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1303.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1303.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1303.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1304* Mercado Libre Ecuadorobject

Additional properties: Yes

[].channel_fields.custom.1304.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1304.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1304.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1304.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1304.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1304.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1304.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1305* Mercado Libre Peruobject

Additional properties: Yes

[].channel_fields.custom.1305.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1305.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1305.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1305.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1305.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1305.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1305.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1901* Shopifyobject

Additional properties: Yes

[].channel_fields.custom.1901.discountnumber

Descuento

Format: float

[].channel_fields.custom.1901.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.2101* Walmartobject

Additional properties: Yes

[].channel_fields.custom.2101.discount_fromstring

Descuento desde

[].channel_fields.custom.2101.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje
  • fixed - Precio fijo
[].channel_fields.custom.2101.discount_tostring

Descuento hasta

[].channel_fields.custom.2101.discountnumber

Descuento

Format: float

[].channel_fields.custom.2201* Claro Shopobject

Additional properties: Yes

[].channel_fields.custom.2201.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
[].channel_fields.custom.2201.discountnumber

Descuento

Format: float

[].channel_fields.custom.2201.tagsstring

Tags

[].channel_fields.custom.2201.delivery_timenumber

Tiempo de envío

[].channel_fields.custom.2201.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.2401* Liverpoolobject

Additional properties: Yes

[].channel_fields.custom.2401.discount_fromstring

Descuento desde

[].channel_fields.custom.2401.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.2401.discount_tostring

Descuento hasta

[].channel_fields.custom.2401.discountnumber

Descuento

Format: float

[].channel_fields.custom.2501* Wishobject

Additional properties: Yes

[].channel_fields.custom.2501.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
[].channel_fields.custom.2501.wish_expressboolean

Habilitar Wish Express

[].channel_fields.custom.2501.delivery_timestring

Tiempo de envío

[].channel_fields.custom.2501.tagsstring

Tags

[].pk*string

Identificador del producto en Yuju

[].sku*string

Max. length: 40

[].stock*number

Format: int

[].price*number

Format: float

[].colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
[].color_textstring
[].secondary_colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
[].sizestring
[].asinstring
[].eanstring
[].upcstring
[].isbn_10string
[].isbn_13string
[].mpnstring
[].msrpnumber

Format: float

[].part_numberstring
[].scentstring
[].product_weightstring
[].janstring
[].custom_variation_valuestring

Max. length: 100

[].custom_i1number

Format: int

[].custom_i2number

Format: int

[].custom_i3number

Format: int

[].custom_i4number

Format: int

[].custom_i5number

Format: int

[].custom_s1string

Max. length: 200

[].custom_s2string

Max. length: 200

[].custom_s3string

Max. length: 200

[].custom_s4string

Max. length: 200

[].custom_s5string

Max. length: 200

[].custom_f1string
[].custom_f2string
[].custom_f3string
[].custom_f4string
[].custom_f5string
[].net_contentstring
[].name*string
[].brand*string
[].description*string
[].dimensions_unit*string
Enum:
  • cm
  • in
[].category_pk*number

Format: int

[].shipping_depth*number

Format: float

[].shipping_height*number

Format: float

[].shipping_pricenumber

Format: float

[].shipping_width*number

Format: float

[].shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
[].sku_simple*string
[].weight*number

Format: float

[].weight_unit*string
Enum:
  • kg
  • oz
[].genderstring
Enum:
  • baby
  • girl
  • boy
  • male
  • female
  • unisex
[].taxstring
Enum:
  • 0
  • 5
  • 8
  • 10
  • 10.5
  • 16
  • 19
  • 21
[].depthnumber

Format: float

[].heightnumber

Format: float

[].widthnumber

Format: float

[].delivery_timenumber

Format: int

[].official_store_idstring
[].linkstring
[].template_htmlstring
Enum:
  • default_plain_text
[].custom_variation_namestring

Max. length: 60

[].modelstring
[].conditionstring
Enum:
  • new
  • used
  • refurbished
[].availabilitystring
Enum:
  • in_stock
  • out_of_stock
  • preorder
[].characteristicsstring
[].custom_catstring
[].tagsstring
[].cable_lengthnumber

Format: float

[].company_cellphonestring
[].condition_notesstring
[].graphics_brandstring
[].graphics_ram_sizenumber

Format: float

[].graphics_ram_unitstring
Enum:
  • mb
  • gb
[].hard_drive_interfacestring
[].hard_drive_sizenumber

Format: int

[].hard_drive_speedstring
[].hard_drive_typestring
[].hard_drive_unitstring
Enum:
  • pb
  • mb
  • gb
  • tb
[].operating_systemstring
[].package_contentstring
[].processor_brandstring
[].processor_cores_qtynumber

Format: int

[].processor_socketstring
[].processor_speednumber

Format: float

[].processor_speed_unitstring
Enum:
  • mhz
  • ghz
[].processor_typestring
[].ram_sizenumber

Format: float

[].ram_size_unitstring
Enum:
  • kb
  • mb
  • gb
  • tb
[].ram_typestring
[].screen_resolutionstring
[].screen_sizenumber

Format: float

[].screen_typestring
[].shoe_typestring
[].usb_portsnumber

Format: int

[].vga_portsnumber

Format: int

[].hdmi_portsnumber

Format: int

[].volumenumber

Format: float

[].volume_unitstring
Enum:
  • l
  • ml
  • gal
[].youtube_linkstring
[].keywordsstring
[].warrantystring
[].warranty_monthsstring
[].materialstring
[].stylestring
[].artiststring
[].adultstring
[].batteries_includedstring
[].batteries_requiredstring
[].battery_typestring
Enum:
  • a
  • a76
  • aa
  • aaa
  • aaaa
  • c
  • d
  • 9v
  • 12v
  • 2/3a
  • 4/3a
  • 4/5a
  • cr123a
  • cr2
  • cr5
  • L-SC
  • p76
  • lithium_ion
  • lithium_metal
  • product_specific
[].media_formatstring
Enum:
  • blu_ray
  • dvd
  • hd_dvd
  • dvd_r
  • VHStape
  • umd
  • lp_record
  • audioCD
  • dvd_audio
  • cassette
  • videotape
[].suggested_age_minnumber

Format: int

[].suggested_age_maxnumber

Format: int

[].authorstring
[].editorstring
[].editionstring
[].publication_datestring
[].languagestring
[].number_of_pagesstring
[].genrestring
[].composerstring
[].performerstring
[].ethernet_portsnumber

Format: int

[].local_pick_upstring
[].publisherstring
[].book_titlestring
[].bindingstring
Enum:
  • Hardcover
  • Paperback
  • Kindleedition
[].vinyl_detailsstring
Enum:
  • lp
  • ep
  • 45
  • 78
  • 12_single
  • other
[].illustratorstring
[].international_shipping_costnumber

Format: float

[].shipping_cost_mxnumber

Format: float

[].shipping_cost_brnumber

Format: float

[].compatibilitystring
[].battery_capacitystring
[].production_countrynumber

Format: int

Enum:
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
[].circumference_diameterstring
[].adjustable_closingstring
[].sole_typestring
[].characterstring
[].for_walkersstring
[].shoes_by_kitstring
[].number_of_shoes_pairnumber

Format: int

[].connectivitystring
[].outdoor_rangestring
[].indoor_rangestring
[].night_visionstring
[].wifistring
[].color_screenstring
[].shatter_protectionstring
[].scratch_protectionstring
[].diaper_sizestring
[].diaper_typestring
[].perfume_typestring
[].suction_levelsnumber

Format: int

[].massaging_breatshieldstring
[].included_storage_cupsstring
[].waterproofstring
[].max_weightstring
[].one_hand_foldstring
[].security_system_typestring
[].baby_bottle_nipple_hole_sizestring
[].baby_bottle_materialstring
[].baby_bottle_nipple_materialstring
[].functionstring
[].with_fragancestring
[].metal_typestring
[].compatible_brandsstring
[].compatible_modelsstring
[].compatible_linesstring
[].catalog_numberstring
[].linestring
[].custom_product_typestring
[].product_code_satstring
[].providers[]number

Format: int

[].guarantorstring

Request Body

2 products con variaciones

[{
        "color": "negro",
        "price": 699,
        "sku": "47200-220",
        "stock": 0,
        "condition": "new",
        "size": "22.00",
        "part_number": "47200-220",
        "listing_type": "gold_special",
        "images": [
          {
            "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
          },
          {
            "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
          },
          {
            "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
          },
          {
            "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
          },
          {
            "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
          }
        ],
        "name": "Plataforma para Mujer Rafael Ferrigno 2704-047200 Color Negro",
        "brand": "RAFAEL FERRIGNO",
        "depth": 21,
        "description": "Plataforma Abierta Para Mujer Rafael Ferrigno 2704-047200 Color Negro En Acabado Sillero",
        "dimensions_unit": "cm",
        "height": 11,
        "gender": "female",
        "shipping_depth": 21,
        "shipping_height": 11,
        "shipping_price": 0,
        "shipping_width": 31,
        "shipping": 0,
        "sku_simple": "047200",
        "weight": 0.8,
        "weight_unit": "kg",
        "tax": "16",
        "width": 31,
        "variations": [
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-220",
            "stock": 0,
            "size": "22.00",
            "part_number": "47200-220",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-225",
            "stock": 0,
            "size": "22.50",
            "part_number": "47200-225",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-230",
            "stock": 0,
            "size": "23.00",
            "part_number": "47200-230",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-235",
            "stock": 0,
            "size": "23.50",
            "part_number": "47200-235",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-240",
            "stock": 0,
            "size": "24.00",
            "part_number": "47200-240",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-245",
            "stock": 0,
            "size": "24.50",
            "part_number": "47200-245",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-250",
            "stock": 0,
            "size": "25.00",
            "part_number": "47200-250",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-255",
            "stock": 0,
            "size": "25.50",
            "part_number": "47200-255",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-260",
            "stock": 0,
            "size": "26.00",
            "part_number": "47200-260",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-265",
            "stock": 0,
            "size": "26.50",
            "part_number": "47200-265",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "negro",
            "price": 699,
            "sku": "47200-270",
            "stock": 0,
            "size": "27.00",
            "part_number": "47200-270",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047200-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          }
        ],
        "description_html": "<strong>Plataforma para Mujer Rafael Ferrigno 2704-047200 Color Negro</strong>",
        "template_html": "default_plain_text",
        "model": "47200-220-047200",
        "category_pk": 559
      },
{
        "color": "cafe",
        "price": 699,
        "sku": "47201-220",
        "stock": 0,
        "condition": "new",
        "size": "22.00",
        "part_number": "47201-220",
        "listing_type": "gold_special",
        "images": [
          {
            "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
          },
          {
            "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
          },
          {
            "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
          },
          {
            "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
          },
          {
            "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
          }
        ],
        "name": "Plataforma para Mujer Rafael Ferrigno 2704-047201 Color Cafe",
        "brand": "RAFAEL FERRIGNO",
        "depth": 21,
        "description": "Plataforma Abierta Para Mujer Rafael Ferrigno 2704-047201 Color Cafe En Acabado Sillero",
        "dimensions_unit": "cm",
        "height": 11,
        "gender": "female",
        "short_description": "Modelo de Fabricante: 2704 \n Plataforma para Mujer Rafael Ferrigno \n Corte en Color Cafe \n Acabado en Material Sillero",
        "shipping_depth": 21,
        "shipping_height": 11,
        "shipping_price": 0,
        "shipping_width": 31,
        "shipping": 0,
        "sku_simple": "047201",
        "weight": 0.8,
        "weight_unit": "kg",
        "tax": "16",
        "width": 31,
        "variations": [
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-220",
            "stock": 0,
            "size": "22.00",
            "part_number": "47201-220",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-225",
            "stock": 0,
            "size": "22.50",
            "part_number": "47201-225",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-230",
            "stock": 0,
            "size": "23.00",
            "part_number": "47201-230",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-235",
            "stock": 0,
            "size": "23.50",
            "part_number": "47201-235",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-240",
            "stock": 0,
            "size": "24.00",
            "part_number": "47201-240",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-245",
            "stock": 0,
            "size": "24.50",
            "part_number": "47201-245",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-250",
            "stock": 0,
            "size": "25.00",
            "part_number": "47201-250",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-255",
            "stock": 0,
            "size": "25.50",
            "part_number": "47201-255",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-260",
            "stock": 0,
            "size": "26.00",
            "part_number": "47201-260",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-265",
            "stock": 0,
            "size": "26.50",
            "part_number": "47201-265",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          },
          {
            "color": "cafe",
            "price": 699,
            "sku": "47201-270",
            "stock": 0,
            "size": "27.00",
            "part_number": "47201-270",
            "images": [
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R02.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R01.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R03.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R05.jpg"
              },
              {
                "url": "http://img.example.com/data/product/1200x1200/047201-R07.jpg"
              }
            ],
            "product_weight": "0.8",
          }
        ],
        "description_html": "<strong>Plataforma para Mujer Rafael Ferrigno 2704-047201 Color Cafe</strong>",
        "template_html": "default_plain_text",
        "model": "47201-220-047201",
        "category_pk": 559
      }
 ]

201 Created chevron_right expand_more

Headers

ParameterTypeDescription
Location*string

Url del feed con el resultado de la operación

put /shops/{shop_pk}/products/

Actualización múltiple  

Sólo se permite actualiza atributos del producto y no de variaciones o imágenes.

La actualización es parcial por lo que no es ncesario mandar todos los atributos

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

PUT \
  -H "Authorization: <value>" \
  -H "Content-type: application/json"
  -d @body.json \
  https://api.software.madkting.com/shops/{shop_pk}/products/

Request Body chevron_right expand_more

application/json

application/json

ParameterTypeDescription
[] Productobject

Additional properties: Yes

Inherits: Variation

[].channel_fields*object

Additional properties: Yes

[].channel_fields.general*object

Campos generales por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsGral

[].channel_fields.general.stockstring
[].channel_fields.general.barcodestring
[].channel_fields.general.barcode_typestring
Enum:
  • ean
  • upc
  • jan
  • gtin
  • isbn_10
  • isbn_13
  • sku
[].channel_fields.general.namestring
[].channel_fields.general.pricestring
[].channel_fields.general.shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
[].channel_fields.general.shipping_pricestring
[].channel_fields.general.descriptionstring
[].channel_fields.general.characteristicsstring
[].channel_fields.general.brandstring
[].channel_fields.custom*object

Campos únicos por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsCustom

[].channel_fields.custom.7* Amazonobject

Additional properties: Yes

[].channel_fields.custom.7.declared_hazmatstring

Declaración de materiales que necesitan manejo especial

Enum:
  • ghs - GHS (Globally Harmonized System)
  • transportation - Transportation
  • other - Otro
  • not_applicable - No aplica
  • waste - Waste
  • Storage - Storage
[].channel_fields.custom.7.fulfillment_activatestring

Manage Fulfillment by Amazon (FBA)

Enum:
  • activate_only_fbc - Activar FBA y desactivar FBM
  • activate_only_fbm - Activar FBM y desactivar FBA
[].channel_fields.custom.7.shipping_groupstring

Plantilla de Envío de Amazon

[].channel_fields.custom.7.custom_variation_tostring

Set Custom Variation to

Enum:
  • size - Size
  • color - Color
[].channel_fields.custom.7.discount_fromstring

Fecha de inicio

[].channel_fields.custom.7.discountnumber

Descuento

Format: float

[].channel_fields.custom.7.discount_tostring

Fecha final

[].channel_fields.custom.7.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.12* Linio Méxicoobject

Additional properties: Yes

[].channel_fields.custom.12.discount_fromstring

Fecha de inicio

[].channel_fields.custom.12.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.12.discount_tostring

Fecha final

[].channel_fields.custom.12.discountnumber

Descuento

Format: float

[].channel_fields.custom.13* Mercado Libre Méxicoobject

Additional properties: Yes

[].channel_fields.custom.13.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.13.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.13.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.13.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.13.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.13.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.13.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.15* Mercado Libre Colombiaobject

Additional properties: Yes

[].channel_fields.custom.15.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.15.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.15.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.15.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.15.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.15.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.15.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.16* Mercado Libre CBTobject

Additional properties: Yes

[].channel_fields.custom.16.price_clnumber

Precio Chile

Format: float

[].channel_fields.custom.16.price_conumber

Precio Colombia

Format: float

[].channel_fields.custom.16.price_mxnumber

Precio México

Format: float

[].channel_fields.custom.16.price_arnumber

Precio Argentina

Format: float

[].channel_fields.custom.16.price_brnumber

Precio Brasil

Format: float

[].channel_fields.custom.17* Linio Colombiaobject

Additional properties: Yes

[].channel_fields.custom.17.discount_fromstring

Fecha de inicio

[].channel_fields.custom.17.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.17.discount_tostring

Fecha final

[].channel_fields.custom.17.discountnumber

Descuento

Format: float

[].channel_fields.custom.1203* Linio Argentinaobject

Additional properties: Yes

[].channel_fields.custom.1203.discount_fromstring

Fecha de inicio

[].channel_fields.custom.1203.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.1203.discount_tostring

Fecha final

[].channel_fields.custom.1203.discountnumber

Descuento

Format: float

[].channel_fields.custom.1204* Linio Chileobject

Additional properties: Yes

[].channel_fields.custom.1204.discount_fromstring

Fecha de inicio

[].channel_fields.custom.1204.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.1204.discount_tostring

Fecha final

[].channel_fields.custom.1204.discountnumber

Descuento

Format: float

[].channel_fields.custom.1221* Dafiti Colombiaobject

Additional properties: Yes

[].channel_fields.custom.1221.discount_fromstring

Fecha de inicio

[].channel_fields.custom.1221.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.1221.discount_tostring

Fecha final

[].channel_fields.custom.1221.discountnumber

Descuento

Format: float

[].channel_fields.custom.1301* Mercado Libre Argentinaobject

Additional properties: Yes

[].channel_fields.custom.1301.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1301.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1301.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1301.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1301.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1301.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1301.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1302* Mercado Libre Chileobject

Additional properties: Yes

[].channel_fields.custom.1302.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1302.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1302.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1302.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1302.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1302.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1302.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1303* Mercado Libre Uruguayobject

Additional properties: Yes

[].channel_fields.custom.1303.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1303.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1303.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1303.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1303.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1303.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1303.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1304* Mercado Libre Ecuadorobject

Additional properties: Yes

[].channel_fields.custom.1304.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1304.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1304.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1304.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1304.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1304.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1304.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1305* Mercado Libre Peruobject

Additional properties: Yes

[].channel_fields.custom.1305.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
[].channel_fields.custom.1305.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

[].channel_fields.custom.1305.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

[].channel_fields.custom.1305.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

[].channel_fields.custom.1305.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

[].channel_fields.custom.1305.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
[].channel_fields.custom.1305.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
[].channel_fields.custom.1901* Shopifyobject

Additional properties: Yes

[].channel_fields.custom.1901.discountnumber

Descuento

Format: float

[].channel_fields.custom.1901.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.2101* Walmartobject

Additional properties: Yes

[].channel_fields.custom.2101.discount_fromstring

Descuento desde

[].channel_fields.custom.2101.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje
  • fixed - Precio fijo
[].channel_fields.custom.2101.discount_tostring

Descuento hasta

[].channel_fields.custom.2101.discountnumber

Descuento

Format: float

[].channel_fields.custom.2201* Claro Shopobject

Additional properties: Yes

[].channel_fields.custom.2201.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
[].channel_fields.custom.2201.discountnumber

Descuento

Format: float

[].channel_fields.custom.2201.tagsstring

Tags

[].channel_fields.custom.2201.delivery_timenumber

Tiempo de envío

[].channel_fields.custom.2201.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.2401* Liverpoolobject

Additional properties: Yes

[].channel_fields.custom.2401.discount_fromstring

Descuento desde

[].channel_fields.custom.2401.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
[].channel_fields.custom.2401.discount_tostring

Descuento hasta

[].channel_fields.custom.2401.discountnumber

Descuento

Format: float

[].channel_fields.custom.2501* Wishobject

Additional properties: Yes

[].channel_fields.custom.2501.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
[].channel_fields.custom.2501.wish_expressboolean

Habilitar Wish Express

[].channel_fields.custom.2501.delivery_timestring

Tiempo de envío

[].channel_fields.custom.2501.tagsstring

Tags

[].pk*string

Identificador del producto en Yuju

[].sku*string

Max. length: 40

[].stock*number

Format: int

[].price*number

Format: float

[].colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
[].color_textstring
[].secondary_colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
[].sizestring
[].asinstring
[].eanstring
[].upcstring
[].isbn_10string
[].isbn_13string
[].mpnstring
[].msrpnumber

Format: float

[].part_numberstring
[].scentstring
[].product_weightstring
[].janstring
[].custom_variation_valuestring

Max. length: 100

[].custom_i1number

Format: int

[].custom_i2number

Format: int

[].custom_i3number

Format: int

[].custom_i4number

Format: int

[].custom_i5number

Format: int

[].custom_s1string

Max. length: 200

[].custom_s2string

Max. length: 200

[].custom_s3string

Max. length: 200

[].custom_s4string

Max. length: 200

[].custom_s5string

Max. length: 200

[].custom_f1string
[].custom_f2string
[].custom_f3string
[].custom_f4string
[].custom_f5string
[].net_contentstring
[].name*string
[].brand*string
[].description*string
[].dimensions_unit*string
Enum:
  • cm
  • in
[].category_pk*number

Format: int

[].shipping_depth*number

Format: float

[].shipping_height*number

Format: float

[].shipping_pricenumber

Format: float

[].shipping_width*number

Format: float

[].shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
[].sku_simple*string
[].weight*number

Format: float

[].weight_unit*string
Enum:
  • kg
  • oz
[].genderstring
Enum:
  • baby
  • girl
  • boy
  • male
  • female
  • unisex
[].taxstring
Enum:
  • 0
  • 5
  • 8
  • 10
  • 10.5
  • 16
  • 19
  • 21
[].depthnumber

Format: float

[].heightnumber

Format: float

[].widthnumber

Format: float

[].delivery_timenumber

Format: int

[].official_store_idstring
[].linkstring
[].template_htmlstring
Enum:
  • default_plain_text
[].custom_variation_namestring

Max. length: 60

[].modelstring
[].conditionstring
Enum:
  • new
  • used
  • refurbished
[].availabilitystring
Enum:
  • in_stock
  • out_of_stock
  • preorder
[].characteristicsstring
[].custom_catstring
[].tagsstring
[].cable_lengthnumber

Format: float

[].company_cellphonestring
[].condition_notesstring
[].graphics_brandstring
[].graphics_ram_sizenumber

Format: float

[].graphics_ram_unitstring
Enum:
  • mb
  • gb
[].hard_drive_interfacestring
[].hard_drive_sizenumber

Format: int

[].hard_drive_speedstring
[].hard_drive_typestring
[].hard_drive_unitstring
Enum:
  • pb
  • mb
  • gb
  • tb
[].operating_systemstring
[].package_contentstring
[].processor_brandstring
[].processor_cores_qtynumber

Format: int

[].processor_socketstring
[].processor_speednumber

Format: float

[].processor_speed_unitstring
Enum:
  • mhz
  • ghz
[].processor_typestring
[].ram_sizenumber

Format: float

[].ram_size_unitstring
Enum:
  • kb
  • mb
  • gb
  • tb
[].ram_typestring
[].screen_resolutionstring
[].screen_sizenumber

Format: float

[].screen_typestring
[].shoe_typestring
[].usb_portsnumber

Format: int

[].vga_portsnumber

Format: int

[].hdmi_portsnumber

Format: int

[].volumenumber

Format: float

[].volume_unitstring
Enum:
  • l
  • ml
  • gal
[].youtube_linkstring
[].keywordsstring
[].warrantystring
[].warranty_monthsstring
[].materialstring
[].stylestring
[].artiststring
[].adultstring
[].batteries_includedstring
[].batteries_requiredstring
[].battery_typestring
Enum:
  • a
  • a76
  • aa
  • aaa
  • aaaa
  • c
  • d
  • 9v
  • 12v
  • 2/3a
  • 4/3a
  • 4/5a
  • cr123a
  • cr2
  • cr5
  • L-SC
  • p76
  • lithium_ion
  • lithium_metal
  • product_specific
[].media_formatstring
Enum:
  • blu_ray
  • dvd
  • hd_dvd
  • dvd_r
  • VHStape
  • umd
  • lp_record
  • audioCD
  • dvd_audio
  • cassette
  • videotape
[].suggested_age_minnumber

Format: int

[].suggested_age_maxnumber

Format: int

[].authorstring
[].editorstring
[].editionstring
[].publication_datestring
[].languagestring
[].number_of_pagesstring
[].genrestring
[].composerstring
[].performerstring
[].ethernet_portsnumber

Format: int

[].local_pick_upstring
[].publisherstring
[].book_titlestring
[].bindingstring
Enum:
  • Hardcover
  • Paperback
  • Kindleedition
[].vinyl_detailsstring
Enum:
  • lp
  • ep
  • 45
  • 78
  • 12_single
  • other
[].illustratorstring
[].international_shipping_costnumber

Format: float

[].shipping_cost_mxnumber

Format: float

[].shipping_cost_brnumber

Format: float

[].compatibilitystring
[].battery_capacitystring
[].production_countrynumber

Format: int

Enum:
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
[].circumference_diameterstring
[].adjustable_closingstring
[].sole_typestring
[].characterstring
[].for_walkersstring
[].shoes_by_kitstring
[].number_of_shoes_pairnumber

Format: int

[].connectivitystring
[].outdoor_rangestring
[].indoor_rangestring
[].night_visionstring
[].wifistring
[].color_screenstring
[].shatter_protectionstring
[].scratch_protectionstring
[].diaper_sizestring
[].diaper_typestring
[].perfume_typestring
[].suction_levelsnumber

Format: int

[].massaging_breatshieldstring
[].included_storage_cupsstring
[].waterproofstring
[].max_weightstring
[].one_hand_foldstring
[].security_system_typestring
[].baby_bottle_nipple_hole_sizestring
[].baby_bottle_materialstring
[].baby_bottle_nipple_materialstring
[].functionstring
[].with_fragancestring
[].metal_typestring
[].compatible_brandsstring
[].compatible_modelsstring
[].compatible_linesstring
[].catalog_numberstring
[].linestring
[].custom_product_typestring
[].product_code_satstring
[].providers[]number

Format: int

[].guarantorstring

Request Body

stock/price

[{
  "pk": 8373372,
  "stock": 120,
  "price": 8900.90
},{
  "pk": 8373373,
  "stock": 0,
  "price": 8900.90
},{
  "pk": 8373374,
  "price": 8900.90
},{
  "pk": 8373375,
  "price": 8900.90
}]

por_marketplace

[{
  "pk": 15304065,
  // Actualizamos en Shopify el precio del producto
  "channel_fields": {
    "1901": {
      "custom": {},
      "general": {
        "price": 2025
      }
    }
  },
  // También actualizamos el nombre y la marca
  "name": "Router Inalambrico ASUS AC1750 Doble Banda 5GHZ USB 3.0 RT-AC1750 B1",
  "brand": "ASUS OPBG"
}]

201 Created chevron_right expand_more

Headers

ParameterTypeDescription
Location*string

Url del feed con el resultado de la operación

get /shops/{shop_pk}/products/{pk}/

Obtener un producto  

Este recurso requiere autentificación

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

GET \
  -H "Authorization: <value>" \
  https://api.software.madkting.com/shops/{shop_pk}/products/{pk}/

200 OK chevron_right expand_more

application/json

application/json

Product Product

type

Additional properties: Yes

Inherits: Variation

ParameterTypeDescription
channel_fields*object

Additional properties: Yes

channel_fields.general*object

Campos generales por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsGral

channel_fields.general.stockstring
channel_fields.general.barcodestring
channel_fields.general.barcode_typestring
Enum:
  • ean
  • upc
  • jan
  • gtin
  • isbn_10
  • isbn_13
  • sku
channel_fields.general.namestring
channel_fields.general.pricestring
channel_fields.general.shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
channel_fields.general.shipping_pricestring
channel_fields.general.descriptionstring
channel_fields.general.characteristicsstring
channel_fields.general.brandstring
channel_fields.custom*object

Campos únicos por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsCustom

channel_fields.custom.7* Amazonobject

Additional properties: Yes

channel_fields.custom.7.declared_hazmatstring

Declaración de materiales que necesitan manejo especial

Enum:
  • ghs - GHS (Globally Harmonized System)
  • transportation - Transportation
  • other - Otro
  • not_applicable - No aplica
  • waste - Waste
  • Storage - Storage
channel_fields.custom.7.fulfillment_activatestring

Manage Fulfillment by Amazon (FBA)

Enum:
  • activate_only_fbc - Activar FBA y desactivar FBM
  • activate_only_fbm - Activar FBM y desactivar FBA
channel_fields.custom.7.shipping_groupstring

Plantilla de Envío de Amazon

channel_fields.custom.7.custom_variation_tostring

Set Custom Variation to

Enum:
  • size - Size
  • color - Color
channel_fields.custom.7.discount_fromstring

Fecha de inicio

channel_fields.custom.7.discountnumber

Descuento

Format: float

channel_fields.custom.7.discount_tostring

Fecha final

channel_fields.custom.7.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.12* Linio Méxicoobject

Additional properties: Yes

channel_fields.custom.12.discount_fromstring

Fecha de inicio

channel_fields.custom.12.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.12.discount_tostring

Fecha final

channel_fields.custom.12.discountnumber

Descuento

Format: float

channel_fields.custom.13* Mercado Libre Méxicoobject

Additional properties: Yes

channel_fields.custom.13.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.13.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.13.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.13.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.13.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.13.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.13.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.15* Mercado Libre Colombiaobject

Additional properties: Yes

channel_fields.custom.15.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.15.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.15.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.15.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.15.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.15.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.15.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.16* Mercado Libre CBTobject

Additional properties: Yes

channel_fields.custom.16.price_clnumber

Precio Chile

Format: float

channel_fields.custom.16.price_conumber

Precio Colombia

Format: float

channel_fields.custom.16.price_mxnumber

Precio México

Format: float

channel_fields.custom.16.price_arnumber

Precio Argentina

Format: float

channel_fields.custom.16.price_brnumber

Precio Brasil

Format: float

channel_fields.custom.17* Linio Colombiaobject

Additional properties: Yes

channel_fields.custom.17.discount_fromstring

Fecha de inicio

channel_fields.custom.17.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.17.discount_tostring

Fecha final

channel_fields.custom.17.discountnumber

Descuento

Format: float

channel_fields.custom.1203* Linio Argentinaobject

Additional properties: Yes

channel_fields.custom.1203.discount_fromstring

Fecha de inicio

channel_fields.custom.1203.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.1203.discount_tostring

Fecha final

channel_fields.custom.1203.discountnumber

Descuento

Format: float

channel_fields.custom.1204* Linio Chileobject

Additional properties: Yes

channel_fields.custom.1204.discount_fromstring

Fecha de inicio

channel_fields.custom.1204.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.1204.discount_tostring

Fecha final

channel_fields.custom.1204.discountnumber

Descuento

Format: float

channel_fields.custom.1221* Dafiti Colombiaobject

Additional properties: Yes

channel_fields.custom.1221.discount_fromstring

Fecha de inicio

channel_fields.custom.1221.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.1221.discount_tostring

Fecha final

channel_fields.custom.1221.discountnumber

Descuento

Format: float

channel_fields.custom.1301* Mercado Libre Argentinaobject

Additional properties: Yes

channel_fields.custom.1301.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1301.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1301.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1301.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1301.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1301.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1301.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1302* Mercado Libre Chileobject

Additional properties: Yes

channel_fields.custom.1302.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1302.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1302.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1302.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1302.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1302.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1302.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1303* Mercado Libre Uruguayobject

Additional properties: Yes

channel_fields.custom.1303.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1303.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1303.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1303.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1303.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1303.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1303.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1304* Mercado Libre Ecuadorobject

Additional properties: Yes

channel_fields.custom.1304.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1304.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1304.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1304.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1304.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1304.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1304.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1305* Mercado Libre Peruobject

Additional properties: Yes

channel_fields.custom.1305.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1305.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1305.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1305.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1305.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1305.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1305.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1901* Shopifyobject

Additional properties: Yes

channel_fields.custom.1901.discountnumber

Descuento

Format: float

channel_fields.custom.1901.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.2101* Walmartobject

Additional properties: Yes

channel_fields.custom.2101.discount_fromstring

Descuento desde

channel_fields.custom.2101.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje
  • fixed - Precio fijo
channel_fields.custom.2101.discount_tostring

Descuento hasta

channel_fields.custom.2101.discountnumber

Descuento

Format: float

channel_fields.custom.2201* Claro Shopobject

Additional properties: Yes

channel_fields.custom.2201.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
channel_fields.custom.2201.discountnumber

Descuento

Format: float

channel_fields.custom.2201.tagsstring

Tags

channel_fields.custom.2201.delivery_timenumber

Tiempo de envío

channel_fields.custom.2201.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.2401* Liverpoolobject

Additional properties: Yes

channel_fields.custom.2401.discount_fromstring

Descuento desde

channel_fields.custom.2401.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.2401.discount_tostring

Descuento hasta

channel_fields.custom.2401.discountnumber

Descuento

Format: float

channel_fields.custom.2501* Wishobject

Additional properties: Yes

channel_fields.custom.2501.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
channel_fields.custom.2501.wish_expressboolean

Habilitar Wish Express

channel_fields.custom.2501.delivery_timestring

Tiempo de envío

channel_fields.custom.2501.tagsstring

Tags

pk*string

Identificador del producto en Yuju

sku*string

Max. length: 40

stock*number

Format: int

price*number

Format: float

colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
color_textstring
secondary_colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
sizestring
asinstring
eanstring
upcstring
isbn_10string
isbn_13string
mpnstring
msrpnumber

Format: float

part_numberstring
scentstring
product_weightstring
janstring
custom_variation_valuestring

Max. length: 100

custom_i1number

Format: int

custom_i2number

Format: int

custom_i3number

Format: int

custom_i4number

Format: int

custom_i5number

Format: int

custom_s1string

Max. length: 200

custom_s2string

Max. length: 200

custom_s3string

Max. length: 200

custom_s4string

Max. length: 200

custom_s5string

Max. length: 200

custom_f1string
custom_f2string
custom_f3string
custom_f4string
custom_f5string
net_contentstring
name*string
brand*string
description*string
dimensions_unit*string
Enum:
  • cm
  • in
category_pk*number

Format: int

shipping_depth*number

Format: float

shipping_height*number

Format: float

shipping_pricenumber

Format: float

shipping_width*number

Format: float

shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
sku_simple*string
weight*number

Format: float

weight_unit*string
Enum:
  • kg
  • oz
genderstring
Enum:
  • baby
  • girl
  • boy
  • male
  • female
  • unisex
taxstring
Enum:
  • 0
  • 5
  • 8
  • 10
  • 10.5
  • 16
  • 19
  • 21
depthnumber

Format: float

heightnumber

Format: float

widthnumber

Format: float

delivery_timenumber

Format: int

official_store_idstring
linkstring
template_htmlstring
Enum:
  • default_plain_text
custom_variation_namestring

Max. length: 60

modelstring
conditionstring
Enum:
  • new
  • used
  • refurbished
availabilitystring
Enum:
  • in_stock
  • out_of_stock
  • preorder
characteristicsstring
custom_catstring
tagsstring
cable_lengthnumber

Format: float

company_cellphonestring
condition_notesstring
graphics_brandstring
graphics_ram_sizenumber

Format: float

graphics_ram_unitstring
Enum:
  • mb
  • gb
hard_drive_interfacestring
hard_drive_sizenumber

Format: int

hard_drive_speedstring
hard_drive_typestring
hard_drive_unitstring
Enum:
  • pb
  • mb
  • gb
  • tb
operating_systemstring
package_contentstring
processor_brandstring
processor_cores_qtynumber

Format: int

processor_socketstring
processor_speednumber

Format: float

processor_speed_unitstring
Enum:
  • mhz
  • ghz
processor_typestring
ram_sizenumber

Format: float

ram_size_unitstring
Enum:
  • kb
  • mb
  • gb
  • tb
ram_typestring
screen_resolutionstring
screen_sizenumber

Format: float

screen_typestring
shoe_typestring
usb_portsnumber

Format: int

vga_portsnumber

Format: int

hdmi_portsnumber

Format: int

volumenumber

Format: float

volume_unitstring
Enum:
  • l
  • ml
  • gal
youtube_linkstring
keywordsstring
warrantystring
warranty_monthsstring
materialstring
stylestring
artiststring
adultstring
batteries_includedstring
batteries_requiredstring
battery_typestring
Enum:
  • a
  • a76
  • aa
  • aaa
  • aaaa
  • c
  • d
  • 9v
  • 12v
  • 2/3a
  • 4/3a
  • 4/5a
  • cr123a
  • cr2
  • cr5
  • L-SC
  • p76
  • lithium_ion
  • lithium_metal
  • product_specific
media_formatstring
Enum:
  • blu_ray
  • dvd
  • hd_dvd
  • dvd_r
  • VHStape
  • umd
  • lp_record
  • audioCD
  • dvd_audio
  • cassette
  • videotape
suggested_age_minnumber

Format: int

suggested_age_maxnumber

Format: int

authorstring
editorstring
editionstring
publication_datestring
languagestring
number_of_pagesstring
genrestring
composerstring
performerstring
ethernet_portsnumber

Format: int

local_pick_upstring
publisherstring
book_titlestring
bindingstring
Enum:
  • Hardcover
  • Paperback
  • Kindleedition
vinyl_detailsstring
Enum:
  • lp
  • ep
  • 45
  • 78
  • 12_single
  • other
illustratorstring
international_shipping_costnumber

Format: float

shipping_cost_mxnumber

Format: float

shipping_cost_brnumber

Format: float

compatibilitystring
battery_capacitystring
production_countrynumber

Format: int

Enum:
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
circumference_diameterstring
adjustable_closingstring
sole_typestring
characterstring
for_walkersstring
shoes_by_kitstring
number_of_shoes_pairnumber

Format: int

connectivitystring
outdoor_rangestring
indoor_rangestring
night_visionstring
wifistring
color_screenstring
shatter_protectionstring
scratch_protectionstring
diaper_sizestring
diaper_typestring
perfume_typestring
suction_levelsnumber

Format: int

massaging_breatshieldstring
included_storage_cupsstring
waterproofstring
max_weightstring
one_hand_foldstring
security_system_typestring
baby_bottle_nipple_hole_sizestring
baby_bottle_materialstring
baby_bottle_nipple_materialstring
functionstring
with_fragancestring
metal_typestring
compatible_brandsstring
compatible_modelsstring
compatible_linesstring
catalog_numberstring
linestring
custom_product_typestring
product_code_satstring
providers[]number

Format: int

guarantorstring

put /shops/{shop_pk}/products/{pk}/

Actualizar un producto  

Sólo se permite actualiza atributos del producto y no de variaciones o imágenes. La actualización es parcial por lo que no es ncesario mandar todos los atributos

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

PUT \
  -H "Authorization: <value>" \
  -H "Content-type: application/json"
  -d @body.json \
  https://api.software.madkting.com/shops/{shop_pk}/products/{pk}/

Request Body chevron_right expand_more

Product Product

application/json

Additional properties: Yes

Inherits: Variation

ParameterTypeDescription
channel_fields*object

Additional properties: Yes

channel_fields.general*object

Campos generales por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsGral

channel_fields.general.stockstring
channel_fields.general.barcodestring
channel_fields.general.barcode_typestring
Enum:
  • ean
  • upc
  • jan
  • gtin
  • isbn_10
  • isbn_13
  • sku
channel_fields.general.namestring
channel_fields.general.pricestring
channel_fields.general.shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
channel_fields.general.shipping_pricestring
channel_fields.general.descriptionstring
channel_fields.general.characteristicsstring
channel_fields.general.brandstring
channel_fields.custom*object

Campos únicos por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsCustom

channel_fields.custom.7* Amazonobject

Additional properties: Yes

channel_fields.custom.7.declared_hazmatstring

Declaración de materiales que necesitan manejo especial

Enum:
  • ghs - GHS (Globally Harmonized System)
  • transportation - Transportation
  • other - Otro
  • not_applicable - No aplica
  • waste - Waste
  • Storage - Storage
channel_fields.custom.7.fulfillment_activatestring

Manage Fulfillment by Amazon (FBA)

Enum:
  • activate_only_fbc - Activar FBA y desactivar FBM
  • activate_only_fbm - Activar FBM y desactivar FBA
channel_fields.custom.7.shipping_groupstring

Plantilla de Envío de Amazon

channel_fields.custom.7.custom_variation_tostring

Set Custom Variation to

Enum:
  • size - Size
  • color - Color
channel_fields.custom.7.discount_fromstring

Fecha de inicio

channel_fields.custom.7.discountnumber

Descuento

Format: float

channel_fields.custom.7.discount_tostring

Fecha final

channel_fields.custom.7.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.12* Linio Méxicoobject

Additional properties: Yes

channel_fields.custom.12.discount_fromstring

Fecha de inicio

channel_fields.custom.12.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.12.discount_tostring

Fecha final

channel_fields.custom.12.discountnumber

Descuento

Format: float

channel_fields.custom.13* Mercado Libre Méxicoobject

Additional properties: Yes

channel_fields.custom.13.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.13.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.13.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.13.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.13.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.13.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.13.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.15* Mercado Libre Colombiaobject

Additional properties: Yes

channel_fields.custom.15.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.15.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.15.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.15.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.15.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.15.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.15.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.16* Mercado Libre CBTobject

Additional properties: Yes

channel_fields.custom.16.price_clnumber

Precio Chile

Format: float

channel_fields.custom.16.price_conumber

Precio Colombia

Format: float

channel_fields.custom.16.price_mxnumber

Precio México

Format: float

channel_fields.custom.16.price_arnumber

Precio Argentina

Format: float

channel_fields.custom.16.price_brnumber

Precio Brasil

Format: float

channel_fields.custom.17* Linio Colombiaobject

Additional properties: Yes

channel_fields.custom.17.discount_fromstring

Fecha de inicio

channel_fields.custom.17.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.17.discount_tostring

Fecha final

channel_fields.custom.17.discountnumber

Descuento

Format: float

channel_fields.custom.1203* Linio Argentinaobject

Additional properties: Yes

channel_fields.custom.1203.discount_fromstring

Fecha de inicio

channel_fields.custom.1203.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.1203.discount_tostring

Fecha final

channel_fields.custom.1203.discountnumber

Descuento

Format: float

channel_fields.custom.1204* Linio Chileobject

Additional properties: Yes

channel_fields.custom.1204.discount_fromstring

Fecha de inicio

channel_fields.custom.1204.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.1204.discount_tostring

Fecha final

channel_fields.custom.1204.discountnumber

Descuento

Format: float

channel_fields.custom.1221* Dafiti Colombiaobject

Additional properties: Yes

channel_fields.custom.1221.discount_fromstring

Fecha de inicio

channel_fields.custom.1221.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.1221.discount_tostring

Fecha final

channel_fields.custom.1221.discountnumber

Descuento

Format: float

channel_fields.custom.1301* Mercado Libre Argentinaobject

Additional properties: Yes

channel_fields.custom.1301.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1301.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1301.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1301.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1301.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1301.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1301.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1302* Mercado Libre Chileobject

Additional properties: Yes

channel_fields.custom.1302.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1302.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1302.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1302.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1302.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1302.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1302.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1303* Mercado Libre Uruguayobject

Additional properties: Yes

channel_fields.custom.1303.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1303.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1303.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1303.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1303.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1303.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1303.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1304* Mercado Libre Ecuadorobject

Additional properties: Yes

channel_fields.custom.1304.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1304.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1304.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1304.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1304.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1304.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1304.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1305* Mercado Libre Peruobject

Additional properties: Yes

channel_fields.custom.1305.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1305.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1305.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1305.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1305.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1305.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1305.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1901* Shopifyobject

Additional properties: Yes

channel_fields.custom.1901.discountnumber

Descuento

Format: float

channel_fields.custom.1901.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.2101* Walmartobject

Additional properties: Yes

channel_fields.custom.2101.discount_fromstring

Descuento desde

channel_fields.custom.2101.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje
  • fixed - Precio fijo
channel_fields.custom.2101.discount_tostring

Descuento hasta

channel_fields.custom.2101.discountnumber

Descuento

Format: float

channel_fields.custom.2201* Claro Shopobject

Additional properties: Yes

channel_fields.custom.2201.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
channel_fields.custom.2201.discountnumber

Descuento

Format: float

channel_fields.custom.2201.tagsstring

Tags

channel_fields.custom.2201.delivery_timenumber

Tiempo de envío

channel_fields.custom.2201.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.2401* Liverpoolobject

Additional properties: Yes

channel_fields.custom.2401.discount_fromstring

Descuento desde

channel_fields.custom.2401.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.2401.discount_tostring

Descuento hasta

channel_fields.custom.2401.discountnumber

Descuento

Format: float

channel_fields.custom.2501* Wishobject

Additional properties: Yes

channel_fields.custom.2501.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
channel_fields.custom.2501.wish_expressboolean

Habilitar Wish Express

channel_fields.custom.2501.delivery_timestring

Tiempo de envío

channel_fields.custom.2501.tagsstring

Tags

pk*string

Identificador del producto en Yuju

sku*string

Max. length: 40

stock*number

Format: int

price*number

Format: float

colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
color_textstring
secondary_colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
sizestring
asinstring
eanstring
upcstring
isbn_10string
isbn_13string
mpnstring
msrpnumber

Format: float

part_numberstring
scentstring
product_weightstring
janstring
custom_variation_valuestring

Max. length: 100

custom_i1number

Format: int

custom_i2number

Format: int

custom_i3number

Format: int

custom_i4number

Format: int

custom_i5number

Format: int

custom_s1string

Max. length: 200

custom_s2string

Max. length: 200

custom_s3string

Max. length: 200

custom_s4string

Max. length: 200

custom_s5string

Max. length: 200

custom_f1string
custom_f2string
custom_f3string
custom_f4string
custom_f5string
net_contentstring
name*string
brand*string
description*string
dimensions_unit*string
Enum:
  • cm
  • in
category_pk*number

Format: int

shipping_depth*number

Format: float

shipping_height*number

Format: float

shipping_pricenumber

Format: float

shipping_width*number

Format: float

shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
sku_simple*string
weight*number

Format: float

weight_unit*string
Enum:
  • kg
  • oz
genderstring
Enum:
  • baby
  • girl
  • boy
  • male
  • female
  • unisex
taxstring
Enum:
  • 0
  • 5
  • 8
  • 10
  • 10.5
  • 16
  • 19
  • 21
depthnumber

Format: float

heightnumber

Format: float

widthnumber

Format: float

delivery_timenumber

Format: int

official_store_idstring
linkstring
template_htmlstring
Enum:
  • default_plain_text
custom_variation_namestring

Max. length: 60

modelstring
conditionstring
Enum:
  • new
  • used
  • refurbished
availabilitystring
Enum:
  • in_stock
  • out_of_stock
  • preorder
characteristicsstring
custom_catstring
tagsstring
cable_lengthnumber

Format: float

company_cellphonestring
condition_notesstring
graphics_brandstring
graphics_ram_sizenumber

Format: float

graphics_ram_unitstring
Enum:
  • mb
  • gb
hard_drive_interfacestring
hard_drive_sizenumber

Format: int

hard_drive_speedstring
hard_drive_typestring
hard_drive_unitstring
Enum:
  • pb
  • mb
  • gb
  • tb
operating_systemstring
package_contentstring
processor_brandstring
processor_cores_qtynumber

Format: int

processor_socketstring
processor_speednumber

Format: float

processor_speed_unitstring
Enum:
  • mhz
  • ghz
processor_typestring
ram_sizenumber

Format: float

ram_size_unitstring
Enum:
  • kb
  • mb
  • gb
  • tb
ram_typestring
screen_resolutionstring
screen_sizenumber

Format: float

screen_typestring
shoe_typestring
usb_portsnumber

Format: int

vga_portsnumber

Format: int

hdmi_portsnumber

Format: int

volumenumber

Format: float

volume_unitstring
Enum:
  • l
  • ml
  • gal
youtube_linkstring
keywordsstring
warrantystring
warranty_monthsstring
materialstring
stylestring
artiststring
adultstring
batteries_includedstring
batteries_requiredstring
battery_typestring
Enum:
  • a
  • a76
  • aa
  • aaa
  • aaaa
  • c
  • d
  • 9v
  • 12v
  • 2/3a
  • 4/3a
  • 4/5a
  • cr123a
  • cr2
  • cr5
  • L-SC
  • p76
  • lithium_ion
  • lithium_metal
  • product_specific
media_formatstring
Enum:
  • blu_ray
  • dvd
  • hd_dvd
  • dvd_r
  • VHStape
  • umd
  • lp_record
  • audioCD
  • dvd_audio
  • cassette
  • videotape
suggested_age_minnumber

Format: int

suggested_age_maxnumber

Format: int

authorstring
editorstring
editionstring
publication_datestring
languagestring
number_of_pagesstring
genrestring
composerstring
performerstring
ethernet_portsnumber

Format: int

local_pick_upstring
publisherstring
book_titlestring
bindingstring
Enum:
  • Hardcover
  • Paperback
  • Kindleedition
vinyl_detailsstring
Enum:
  • lp
  • ep
  • 45
  • 78
  • 12_single
  • other
illustratorstring
international_shipping_costnumber

Format: float

shipping_cost_mxnumber

Format: float

shipping_cost_brnumber

Format: float

compatibilitystring
battery_capacitystring
production_countrynumber

Format: int

Enum:
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
circumference_diameterstring
adjustable_closingstring
sole_typestring
characterstring
for_walkersstring
shoes_by_kitstring
number_of_shoes_pairnumber

Format: int

connectivitystring
outdoor_rangestring
indoor_rangestring
night_visionstring
wifistring
color_screenstring
shatter_protectionstring
scratch_protectionstring
diaper_sizestring
diaper_typestring
perfume_typestring
suction_levelsnumber

Format: int

massaging_breatshieldstring
included_storage_cupsstring
waterproofstring
max_weightstring
one_hand_foldstring
security_system_typestring
baby_bottle_nipple_hole_sizestring
baby_bottle_materialstring
baby_bottle_nipple_materialstring
functionstring
with_fragancestring
metal_typestring
compatible_brandsstring
compatible_modelsstring
compatible_linesstring
catalog_numberstring
linestring
custom_product_typestring
product_code_satstring
providers[]number

Format: int

guarantorstring

201 Created chevron_right expand_more

Headers

ParameterTypeDescription
Location*string

Url del feed con el resultado de la operación

delete /shops/{shop_pk}/products/{pk}/

Eliminar un producto  

Este recurso requiere autentificación

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

DELETE \
  -H "Authorization: <value>" \
  https://api.software.madkting.com/shops/{shop_pk}/products/{pk}/

201 Created chevron_right expand_more

Headers

ParameterTypeDescription
Location*string

Url del feed con el resultado de la operación

post /shops/{shop_pk}/products/{pk}/variations/

Crear variaciones  

Sólo durante la creación del producto es permitido envíar dentro las Variaciones las imágenes. Esto creará la variación completa sin necesidad de estar creando elemento por elemento. Todas las variaciones se crearán sobre el mismo producto

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

POST \
  -H "Authorization: <value>" \
  -H "Content-type: application/json"
  -d @body.json \
  https://api.software.madkting.com/shops/{shop_pk}/products/{pk}/variations/

Request Body chevron_right expand_more

application/json

application/json

ParameterTypeDescription
[] Variationobject

Additional properties: Yes

Inherits: object

[].pk*string

Identificador del producto en Yuju

[].sku*string

Max. length: 40

[].stock*number

Format: int

[].price*number

Format: float

[].colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
[].color_textstring
[].secondary_colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
[].sizestring
[].asinstring
[].eanstring
[].upcstring
[].isbn_10string
[].isbn_13string
[].mpnstring
[].msrpnumber

Format: float

[].part_numberstring
[].scentstring
[].product_weightstring
[].janstring
[].custom_variation_valuestring

Max. length: 100

[].custom_i1number

Format: int

[].custom_i2number

Format: int

[].custom_i3number

Format: int

[].custom_i4number

Format: int

[].custom_i5number

Format: int

[].custom_s1string

Max. length: 200

[].custom_s2string

Max. length: 200

[].custom_s3string

Max. length: 200

[].custom_s4string

Max. length: 200

[].custom_s5string

Max. length: 200

[].custom_f1string
[].custom_f2string
[].custom_f3string
[].custom_f4string
[].custom_f5string
[].net_contentstring
[].channel_fields*object

Additional properties: Yes

[].channel_fields.general*object

Campos generales por Marketplace

Additional properties: Yes

[].channel_fields.general.stockstring
[].channel_fields.general.barcodestring
[].channel_fields.general.barcode_typestring
Enum:
  • ean
  • upc
  • jan
  • gtin
  • isbn_10
  • isbn_13
  • sku

201 Created chevron_right expand_more

Headers

ParameterTypeDescription
Location*string

Url del feed con el resultado de la operación

put /shops/{shop_pk}/products/{pk}/variations/

Actualizar multiples variaciones  

Las variaciones deben pertenecer a un mismo producto padre. Sólo se permite actualiza atributos de la variacion y no de imágenes.

La actualización es parcial por lo que no es ncesario mandar todos los atributos

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

PUT \
  -H "Authorization: <value>" \
  -H "Content-type: application/json"
  -d @body.json \
  https://api.software.madkting.com/shops/{shop_pk}/products/{pk}/variations/

Request Body chevron_right expand_more

Variation Variation

application/json

Additional properties: Yes

Inherits: object

ParameterTypeDescription
pk*string

Identificador del producto en Yuju

sku*string

Max. length: 40

stock*number

Format: int

price*number

Format: float

colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
color_textstring
secondary_colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
sizestring
asinstring
eanstring
upcstring
isbn_10string
isbn_13string
mpnstring
msrpnumber

Format: float

part_numberstring
scentstring
product_weightstring
janstring
custom_variation_valuestring

Max. length: 100

custom_i1number

Format: int

custom_i2number

Format: int

custom_i3number

Format: int

custom_i4number

Format: int

custom_i5number

Format: int

custom_s1string

Max. length: 200

custom_s2string

Max. length: 200

custom_s3string

Max. length: 200

custom_s4string

Max. length: 200

custom_s5string

Max. length: 200

custom_f1string
custom_f2string
custom_f3string
custom_f4string
custom_f5string
net_contentstring
channel_fields*object

Additional properties: Yes

channel_fields.general*object

Campos generales por Marketplace

Additional properties: Yes

channel_fields.general.stockstring
channel_fields.general.barcodestring
channel_fields.general.barcode_typestring
Enum:
  • ean
  • upc
  • jan
  • gtin
  • isbn_10
  • isbn_13
  • sku

Request Body

stock/price

[{
  "pk": 8373372,
  "stock": 120,
  "price": 8900.90
},{
  "pk": 8373373,
  "stock": 0,
  "price": 8900.90
},{
  "pk": 8373374,
  "price": 8900.90
},{
  "pk": 8373375,
  "price": 8900.90
}]

por_marketplace

[{
  "pk": 15304067,
  // Actualizamos en Mercadolibre México el stock de la variación
  "channel_fields": {
    "13": {
      "general": {
        "stock": 100
      }
    }
  },
}]

201 Created chevron_right expand_more

Headers

ParameterTypeDescription
Location*string

Url del feed con el resultado de la operación

get /feeds/{feed_pk}

 

Este recurso requiere autentificación

Parameters chevron_right expand_more

ParameterTypeDescription
Path
feed_pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

GET \
  -H "Authorization: <value>" \
  https://api.software.madkting.com/feeds/{feed_pk}

200 OK chevron_right expand_more

application/json

application/json

Feed Feed

type

Additional properties: Yes

Inherits: object

ParameterTypeDescription
pk*string
status*string
result*object

Additional properties: Yes

result.success*array
result.success[]object
result.errors*array
result.errors[]object

Response Body

{
  "pk": "KYUV6XmGmQpN_PhN9G8LTx8JoTNWtfw5",
  "status": "fail",
  "result": {
    "success": [],
    "errors": [
      {
        "message": [
          "Método de envío es requerido"
        ],
        "sku_simple": "aaRcaIBtMfDqg",
        "sku": "aaRcaIBt",
        "product_pk": null,
        "name": "[TEST] eveniet tempore assumenda quidem velit"
      }
    ]
  }
}

{
  "pk": "3kvG-d3U63XwesclD5fARxTES7UEBreE",
  "status": "complete",
  "result": {
    "success": [
      {
        "sku_simple": "aaRcaIBtMfDqg",
        "sku": "aaRcaIBt",
        "product_pk": 5263,
        "name": "[TEST] eveniet tempore assumenda quidem velit"
      }
    ],
    "errors": []
  }
}

get /shops/{shop_pk}/marketplace/{marketplace_pk}/orders/

Listado y busqueda de ordenes por Marketplace  

Metodos de pago más relevantes:

+------------------------+----------------------------+--------------------------+
| credit_card            | account_money              | debit_card               |
| ticket                 | creditcard                 | atm                      |
| other                  | club_premier_kmp_payment   | bank_transfer            |
| banorte_payworks_lpay  | credit                     | loyalty_concredito       |
| cashondelivery_payment | pay_at_store               | linio_wallet             |
| loyalty_biw            | club_premier_mixed_payment | digital_currency         |
| giftcertificate        | shopify                    | oxxo_direct              |
| bancomer_interredes    | paypal_rest_api            | paypal_express_checkout  |
| redeban_webservice     | installments               | crédito                  |
| claro_shop             | avianca_miles_only_payment | paypal_braintree_payment |
| credibanco_payment     | cashondeliverypayment      | debit                    |
| zero_payment           | efecty_payment             | pse_hostedpaymentpage    |
| paypal                 | linio_discount_creditcard  | payuccpayment            |
| amex_gateway           | débito                     | loyalty_grs              |
| prepaid_card           | quickpay_lpay              |                          |
+------------------------+----------------------------+--------------------------+

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
marketplace_pk*string
Query
created_at__[gt, gte, lt, lte]string

Filtro por fecha de creación en el Marketplace (UTC)

statusstring

Filtro por status de la orden

Enum:
  • open
  • closed
pagenumber

Número de página

page_sizenumber

Número de elementos

Default value: 30

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

GET \
  -H "Authorization: <value>" \
  https://api.software.madkting.com/shops/{shop_pk}/marketplace/{marketplace_pk}/orders/?created_at__%5Bgt%2C%20gte%2C%20lt%2C%20lte%5D=<value>&status=<value>&page=<value>&page_size=<value>

200 OK chevron_right expand_more

application/json

application/json

type

type

ParameterTypeDescription
[] OrderSearchobject

Additional properties: Yes

Inherits: object

[].pk*string

Identificador interno de la orden en el marketplace

[].shop_pk*number

Identificador de la tienda en Yuju

[].marketplace_pk*string

Identificador del marketplace en Yuju:

Enum:
  • 4: Google Shopping
  • 7: Amazon
  • 13: Mercado Libre México
  • 15: Mercado Libre Colombia
  • 1301: Mercado Libre Argentina
  • 1302: Mercado Libre Chile
  • 1303: Mercado Libre Uruguay
  • 1304: Mercado Libre Ecuador
  • 1305: Mercado Libre Peru
  • 16: Mercado Libre CBT
  • 12: Linio México
  • 17: Linio Colombia
  • 1203: Linio Argentina
  • 1204: Linio Chile
  • 1205: Linio Perú
  • 1221: Dafiti Colombia
  • 1801: Magento
  • 1901: Shopify
  • 2001: Gestionix
  • 2101: Walmart
  • 2201: Claro Shop
  • 2301: Odoo
  • 2401: Liverpool
  • 2501: Wish
[].customer*object

Additional properties: Yes

[].customer.name*string

Nombre del comprador

[].customer.email*string

Correo proporcionado por el marketplace. En caso que el marketplace no lo proporcione se incluira undefined@madkting.com

[].delivery_deadline*string

Fecha limite para envíar el producto

[].payment_method*string

Método de pago proporcionado por el marketplace

[].reference*string

Número de pedido en el marketplace

[].status*string

Define si la orden está abierta o cerrada

Enum:
  • open
  • closed
[].actions*string

Define las acciones permitidas para la orden

Enum:
  • cancel: Cancelación de orden
  • cancel_feedback: Cancelación por medio de feedback (Mercadolibre)
  • refund: Realizar devolución de dinero
  • feedback: Calificar la orden (sirve tanto para marcar como entregada y/o cancelarla)
  • print_delivery_label: Guía de envío disponible para imprimir
  • manage_by_item: El marketplace permite realizar envíos por Item de manera separada
  • set_ready_to_ship: Confirmar orden
  • set_shipped: Notificar que el producto fué enviado
  • set_delivered: Notificar que el producto fué entregado
  • assign_tracking_number: Permite asignar un número de guía cuando se marca como enviada la orden
[].total*number

Total de la orden

Format: float

[].progress[]*object

Progreso y/o etapas de la orden

Additional properties: Yes

[].progress[].name*string
Enum:
  • paid: Orden pagada
  • ready_to_ship: Orden confirmada
  • shipped: Productos enviados
  • delivered: Productos entregados
  • canceled: Orden cancelada
  • refunded: Orden/Pago devuelto
  • with_mediation: Orden con reclamo
[].progress[].status*string
Enum:
  • pending: En espera de la acción
  • partial: Se ha realizado de forma parcial a alguno de los productos
  • in_progress: Se ha realizado la acción pero aún se espera respuesta del canal o se mantiene en proceso de realizarse
  • done: Acción realizada
[].paid_total*number

Total pagado por el comprador

Format: float

[].currency*string

Código de moneda de la transacción

[].created_at*string

Fecha de creación de orden (UTC) en el Marketplace

[].seller_shipping_cost*string

Costo cargado al vededor por el envío

[].marketplace_fee*number

Comisión del marketplace por la compra (sólo algunos marketplace lo proporcionan)

Format: float

[].paid_total_to_seller*number

Lo que el marketplace pagaría al vendedor

Format: float

[].payment_accredited_at*string

Fecha en que se aprobó el pago (UTC)

get /shops/{shop_pk}/marketplace/{marketplace_pk}/orders/{pk}

 

Este recurso requiere autentificación

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
marketplace_pk*string
pk*string
Query
pagenumber

Número de página

page_sizenumber

Número de elementos

Default value: 30

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

GET \
  -H "Authorization: <value>" \
  https://api.software.madkting.com/shops/{shop_pk}/marketplace/{marketplace_pk}/orders/{pk}?page=<value>&page_size=<value>

200 OK chevron_right expand_more

application/json

application/json

Response Body

order

{
  "pk": "3121266208",
  "marketplace_pk": 13,
  "shop_pk": 2108342,
  "reference": "3121266208",
  "total": 599.0,
  "paid_total": 599.0,
  "currency": "mxn",
  "created_at": "2018-11-14T17:32:44",
  "updated_at": "2018-11-14T17:32:48",
  "payment_method": "debit_card",
  "delivery_deadline": "2018-11-14",
  "status": "open",
  "actions": ["feedback", "manage_notes", "refund", "cancel_feedback", "print_delivery_label", "set_ready_to_ship"],
  "notes": false,
  "coupon": null,
  "customer": {
    "first_name": "Marco Esteban",
    "last_name": "Ortiz Hernandez",
    "email": "meortiz.nd9858+2-ogizkdbbnsewwdzys@mail.mercadolibre.com.mx",
    "phone": "(None)5555435612",
    "nickname": "ESTEBSAAJS120",
    "customer_id": "13221337",
    "doc_number": null,
    "doc_type": null
  },
  "progress": [{
    "name": "paid",
    "status": "done"
  }, {
    "name": "ready_to_ship",
    "status": "pending"
  }, {
    "name": "shipped",
    "status": "pending"
  }, {
    "name": "delivered",
    "status": "pending"
  }],
  "billing_address": null,
  "shipping_address": {
    "pk": "28194329535",
    "address": "Av. Insurgente 2453 175",
    "city": "Alvaro Obregón",
    "country": "Mexico",
    "email": null,
    "first_name": "Marco Esteban Ortiz Hernandez",
    "last_name": "",
    "latitude": "None",
    "longitude": "None",
    "neighborhood": "Narvarte Oriente",
    "phone": "5581001390",
    "postal_code": "06150",
    "reference": "101 En Contra Esquina De La Delegacion Alvaro Obregón y aun costado del corralon de Autos De Canarios Entre: Calle 4 Y Canarios",
    "region": "Distrito Federal",
    "street_name": "Av. Insurgente 2453",
    "street_number": "2453"
  },
  "shipping_cost": 0.0,
  "seller_shipping_cost": 65.5,
  "marketplace_fee": 77.87,
  "paid_total_to_seller": 521.13,
  "payment_accredited_at": "2018-11-14T17:32:47",
  "fulfillment_type": null,
  "payment_references": ["5624995900"],
  "cart_orders": [],
  "tags": ["shipment_me2", "logistic_drop_off"],
  "payment_detail": [{
    "amount": "599.0",
    "acredited_at": "2018-11-14T17:32:47",
    "method": "debvisa",
    "currency": "MXN",
    "id": "5624995900",
    "extra": {
      "store_id": null,
      "merchant_account_id": null,
      "counter_currency": null,
      "id": 5624995900,
      "live_mode": true,
      "additional_info": {
        "items": [{
          "picture_url": null,
          "title": "Tenis Vans Authentic - 348ahgf - Turquesa - Mujer",
          "unit_price": "599.0",
          "description": null,
          "quantity": "1",
          "id": "MLM737321331",
          "category_id": "MLM6585"
        }]
      },
      "payer": {
        "identification": {
          "number": null,
          "type": null
        },
        "email": null,
        "type": "registered",
        "operator_id": null,
        "first_name": "Marco Esteban",
        "phone": {
          "number": "5555435612",
          "area_code": null,
          "extension": null
        },
        "last_name": "Ortiz Hernandez",
        "entity_type": null,
        "id": "13221337"
      },
      "installments": 1,
      "platform_id": null,
      "transaction_amount_refunded": 0,
      "date_created": "2018-11-14T13:32:45.000-04:00",
      "date_last_updated": "2018-11-14T13:32:47.000-04:00",
      "pos_id": null,
      "refunds": [],
      "shipping_amount": 0,
      "differential_pricing_id": null,
      "order": {
        "id": "3121266208",
        "type": "mercadolibre"
      },
      "status_detail": "accredited",
      "sponsor_id": null,
      "corporation_id": null,
      "external_reference": "3121266208",
      "date_of_expiration": null,
      "statement_descriptor": "MERCADO PAGO*",
      "payment_method_id": "debvisa",
      "call_for_authorize_id": null,
      "transaction_details": {
        "financial_institution": null,
        "installment_amount": 599,
        "overpaid_amount": 0,
        "total_paid_amount": 599,
        "acquirer_reference": null,
        "external_resource_url": null,
        "net_received_amount": 521.13,
        "payment_method_reference_id": null,
        "payable_deferral_period": null
      },
      "taxes_amount": 0,
      "marketplace_owner": null,
      "money_release_schema": null,
      "description": "Tenis Vans Authentic - 348ahgf - Turquesa - Mujer",
      "notification_url": null,
      "acquirer_reconciliation": [],
      "processing_mode": "aggregator",
      "operation_type": "regular_payment",
      "issuer_id": "158",
      "transaction_amount": 599,
      "money_release_date": "2018-12-18T13:32:47.000-04:00",
      "merchant_number": null,
      "acquirer": null,
      "integrator_id": null,
      "deduction_schema": null,
      "collector_id": 52360017,
      "binary_mode": false,
      "metadata": {},
      "card": {
        "date_last_updated": "2018-11-14T13:32:45.000-04:00",
        "last_four_digits": "3699",
        "expiration_month": 11,
        "expiration_year": 2021,
        "first_six_digits": "481516",
        "id": null,
        "date_created": "2018-11-14T13:32:45.000-04:00",
        "cardholder": {
          "name": "Marco Esteban LOPEZ",
          "identification": {
            "number": null,
            "type": null
          }
        }
      },
      "payment_type_id": "debit_card",
      "currency_id": "MXN",
      "coupon_amount": 0,
      "date_approved": "2018-11-14T13:32:47.000-04:00",
      "fee_details": [{
        "fee_payer": "collector",
        "amount": 77.87,
        "type": "application_fee"
      }],
      "status": "approved",
      "authorization_code": "742824",
      "captured": true
    }
  }],
  "extra": {
    "pack_id": null
  },
  "claims": null,
  "items": [{
    "item_pk": "MLM737321331-46345568791",
    "product_url": "http://api.software.madkting.com/shops/2108342/products/15778683/",
    "sku": "348AHGF-23",
    "name": "Tenis Vans Authentic - 348ahgf - Turquesa - Mujer",
    "status": "to_be_agreed",
    "tracking_code": "778969142275",
    "price": 599.0,
    "product_special_price": null,
    "product_original_price": 899.0,
    "carrier": "FedEx",
    "quantity": 1,
    "comments": null,
    "delivery_time": null,
    "currency": "MXN",
    "coupon_code": null,
    "coupon_value": null,
    "product": {
      "pk": "15778683",
      "parent_pk": "15778682",
      "upc": "190542516487",
      "ean": null,
      "isbn_10": null,
      "isbn_13": null,
      "color": "agua",
      "size": "23",
      "custom_variation": null,
      "custom_variation_name": null,
      "stock": 2,
      "price": 899.0,
      "color_text": "Turquesa",
      "discount": 0.0,
      "discount_to": "2018-12-23T00:00:00",
      "discount_from": "2018-12-04T00:00:00",
      "special_price": null,
      "special_price_amz": null,
      "special_price_linio": 549.0,
      "secondary_color": null,
      "asin": null,
      "gtin": null,
      "jan": null,
      "mpn": null,
      "part_number": null,
      "model": "Authentic"
    }
  }]
}

post /shops/{shop_pk}/marketplace/{marketplace_pk}/orders/{order_pk}/module-integrations/

 

Este recurso requiere autentificación

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
marketplace_pk*string
order_pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

POST \
  -H "Authorization: <value>" \
  -H "Content-type: application/json"
  -d @body.json \
  https://api.software.madkting.com/shops/{shop_pk}/marketplace/{marketplace_pk}/orders/{order_pk}/module-integrations/

Request Body chevron_right expand_more

OrderIntegration OrderIntegration

application/json

Additional properties: Yes

Inherits: object

ParameterTypeDescription
pkstring

Identificador de la integración en Yuju (Solo se retorna en el response body de post)

order_pkstring

Identificador de la orden a la que pertenece la integración en Yuju (Solo se retorna en el response body de post)

marketplace_pknumber

Identificador del marketplace al que pertenece la orden en Yuju (Solo se retorna en el response body de post)

Format: int

shop_pknumber

Identificador de la tienda a la que pertenece la orden en Yuju (Solo se retorna en el response body de post)

Format: int

module_name*string

Nombre del modulo externo con el que se hace la integración de la orden

status*string

Status de la orden o documento en el modulo externo donde se hizo la integración

message*string

Si no se envia un mensaje por parte del modulo externo se debe enviar un string vacío

reference*string

Referencia de la orden o documento en el modulo externo

type*string

Tipo de documento en modulo externo

extra*object

Objeto con campos extra relacionados con la orden o documento en el modulo externo Si no hay campos extra se debe enviar un objeto vacío: {}

created_atstring

(Solo se retorna en el response body de post)

updated_atstring

(Solo se retorna en el response body de post)

Request Body

order_integration

{
  "module_name": "Some ERP",
  "status": "Created",
  "message": "Order successfullu created in ERP",
  "reference": "OR00190",
  "type": "Sale order",
  "extra": {}
}

201 Created chevron_right expand_more

OrderIntegration OrderIntegration

application/json

Additional properties: Yes

Inherits: object

ParameterTypeDescription
pkstring

Identificador de la integración en Yuju (Solo se retorna en el response body de post)

order_pkstring

Identificador de la orden a la que pertenece la integración en Yuju (Solo se retorna en el response body de post)

marketplace_pknumber

Identificador del marketplace al que pertenece la orden en Yuju (Solo se retorna en el response body de post)

Format: int

shop_pknumber

Identificador de la tienda a la que pertenece la orden en Yuju (Solo se retorna en el response body de post)

Format: int

module_name*string

Nombre del modulo externo con el que se hace la integración de la orden

status*string

Status de la orden o documento en el modulo externo donde se hizo la integración

message*string

Si no se envia un mensaje por parte del modulo externo se debe enviar un string vacío

reference*string

Referencia de la orden o documento en el modulo externo

type*string

Tipo de documento en modulo externo

extra*object

Objeto con campos extra relacionados con la orden o documento en el modulo externo Si no hay campos extra se debe enviar un objeto vacío: {}

created_atstring

(Solo se retorna en el response body de post)

updated_atstring

(Solo se retorna en el response body de post)

Response Body

integration

{
    "pk": "e9671d39-5667-49ac-b047-123456789012",
    "order_pk": "2210600000",
    "marketplace_pk": 13,
    "shop_pk": 1234,
    "module_name": "Some ERP",
    "status": "Created",
    "message": "Order successfullu created in ERP",
    "reference": "OR00190",
    "type": "Sale order",
    "extra": {},
    "created_at": "2020-03-11T15:58:57.677157",
    "updated_at": "2020-03-11T15:58:57.677157"
}

put /shops/{shop_pk}/marketplace/{marketplace_pk}/orders/{order_pk}/module-integrations/{integration_pk}/

 

La actualización es parcial por lo que no es ncesario mandar todos los atributos

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
marketplace_pk*string
order_pk*string
integration_pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

PUT \
  -H "Authorization: <value>" \
  -H "Content-type: application/json"
  -d @body.json \
  https://api.software.madkting.com/shops/{shop_pk}/marketplace/{marketplace_pk}/orders/{order_pk}/module-integrations/{integration_pk}/

Request Body chevron_right expand_more

OrderIntegration OrderIntegration

application/json

Additional properties: Yes

Inherits: object

ParameterTypeDescription
pkstring

Identificador de la integración en Yuju (Solo se retorna en el response body de post)

order_pkstring

Identificador de la orden a la que pertenece la integración en Yuju (Solo se retorna en el response body de post)

marketplace_pknumber

Identificador del marketplace al que pertenece la orden en Yuju (Solo se retorna en el response body de post)

Format: int

shop_pknumber

Identificador de la tienda a la que pertenece la orden en Yuju (Solo se retorna en el response body de post)

Format: int

module_name*string

Nombre del modulo externo con el que se hace la integración de la orden

status*string

Status de la orden o documento en el modulo externo donde se hizo la integración

message*string

Si no se envia un mensaje por parte del modulo externo se debe enviar un string vacío

reference*string

Referencia de la orden o documento en el modulo externo

type*string

Tipo de documento en modulo externo

extra*object

Objeto con campos extra relacionados con la orden o documento en el modulo externo Si no hay campos extra se debe enviar un objeto vacío: {}

created_atstring

(Solo se retorna en el response body de post)

updated_atstring

(Solo se retorna en el response body de post)

Request Body

integration

{
    "pk": "e9671d39-5667-49ac-b047-123456789012",
    "order_pk": "2210600000",
    "marketplace_pk": 13,
    "shop_pk": 1234,
    "module_name": "Some ERP",
    "status": "Created",
    "message": "Order successfullu created in ERP",
    "reference": "OR00190",
    "type": "Sale order",
    "extra": {},
    "created_at": "2020-03-11T15:58:57.677157",
    "updated_at": "2020-03-11T15:58:57.677157"
}

201 Created chevron_right expand_more

delete /shops/{shop_pk}/marketplace/{marketplace_pk}/orders/{order_pk}/module-integrations/{integration_pk}/

Eliminar una integración externa de una orden  

Este recurso requiere autentificación

Parameters chevron_right expand_more

ParameterTypeDescription
Path
shop_pk*string
marketplace_pk*string
order_pk*string
integration_pk*string

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

DELETE \
  -H "Authorization: <value>" \
  https://api.software.madkting.com/shops/{shop_pk}/marketplace/{marketplace_pk}/orders/{order_pk}/module-integrations/{integration_pk}/

201 Created chevron_right expand_more

get /orders/updates

 

Este recurso requiere autentificación

Parameters chevron_right expand_more

ParameterTypeDescription
Query
date__[gt, gte, lt, lte]string

Filtro por fecha de creación del registro

eventstring

Filtro por tipo de evento registrado

Enum:
  • REGISTER: Cuando la orden es ingresada dentro de Madkting
  • SHIPPING_ADDRESS: Cuando el comprador registra su dirección de envío por medio del formulario en Madkting
  • BILLING_ADDRESS: Cuando el comprador registra sus datos de facturación por medio del formulario en Madkting
  • REFUNDED: Cuando se detecta el reembolso de una venta
  • ITEM_CONFIRMED: Cuando el producto se confirma (ready to ship)
  • ITEM_SHIPPED: Cuando el producto es envíado
  • ITEM_DELIVERED: Cuando el producto ha sido entregado
  • ITEM_CANCELED: Cuando el producto ha sido cancelado
shop_pkstring

Filtro por tienda en Yuju

marketplace_pkstring

Filtro por marketplace en Yuju

pagenumber

Número de página

page_sizenumber

Número de elementos

Default value: 30

Headers chevron_right expand_more

ParameterTypeDescription
Authorization*string

Token: {{token}}

GET \
  -H "Authorization: <value>" \
  https://api.software.madkting.com/orders/updates?date__%5Bgt%2C%20gte%2C%20lt%2C%20lte%5D=<value>&event=<value>&shop_pk=<value>&marketplace_pk=<value>&page=<value>&page_size=<value>

200 OK chevron_right expand_more

OrderUpdate OrderUpdate

application/json

Additional properties: Yes

Inherits: object

ParameterTypeDescription
pk*string

Identificador interno de la orden en el marketplace

shop_pk*number

Identificador de la tienda en Yuju

marketplace_pk*string

Identificador del marketplace en Yuju:

Enum:
  • 4: Google Shopping
  • 7: Amazon
  • 13: Mercado Libre México
  • 15: Mercado Libre Colombia
  • 1301: Mercado Libre Argentina
  • 1302: Mercado Libre Chile
  • 1303: Mercado Libre Uruguay
  • 1304: Mercado Libre Ecuador
  • 1305: Mercado Libre Peru
  • 16: Mercado Libre CBT
  • 12: Linio México
  • 17: Linio Colombia
  • 1203: Linio Argentina
  • 1204: Linio Chile
  • 1205: Linio Perú
  • 1221: Dafiti Colombia
  • 1801: Magento
  • 1901: Shopify
  • 2001: Gestionix
  • 2101: Walmart
  • 2201: Claro Shop
  • 2301: Odoo
  • 2401: Liverpool
  • 2501: Wish
reference*string

Referencia del objeto que cambió

event*string

Evento realizado

Response Body

response

[{
  "pk": "6243964",
  "marketplace_pk": 12,
  "shop_pk": 250,
  "source": "MARKETPLACE",
  "event": "REGISTER",
  "date": "2019-12-16T17:48:34.962194Z"
}, {
  "pk": "6243880",
  "marketplace_pk": 12,
  "shop_pk": 250,
  "source": "MARKETPLACE",
  "event": "REGISTER",
  "date": "2019-12-16T17:37:46.625159Z"
}, {
  "pk": "2254244608",
  "marketplace_pk": 13,
  "shop_pk": 250,
  "source": "MARKETPLACE",
  "event": "REGISTER",
  "date": "2019-12-16T17:34:37.489553Z"
}, {
  "pk": "2253420478",
  "marketplace_pk": 13,
  "shop_pk": 250,
  "source": "MARKETPLACE",
  "event": "REGISTER",
  "date": "2019-12-16T17:11:36.483256Z"
}, {
  "pk": "2254182792",
  "marketplace_pk": 13,
  "shop_pk": 250,
  "source": "MARKETPLACE",
  "event": "REGISTER",
  "date": "2019-12-16T17:01:55.875210Z"
}]

Security Schemes

Types

Type Product (object)

Product

Additional properties: Yes

Inherits: Variation

Model

ParameterTypeDescription
channel_fields*object

Additional properties: Yes

channel_fields.general*object

Campos generales por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsGral

channel_fields.general.stockstring
channel_fields.general.barcodestring
channel_fields.general.barcode_typestring
Enum:
  • ean
  • upc
  • jan
  • gtin
  • isbn_10
  • isbn_13
  • sku
channel_fields.general.namestring
channel_fields.general.pricestring
channel_fields.general.shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
channel_fields.general.shipping_pricestring
channel_fields.general.descriptionstring
channel_fields.general.characteristicsstring
channel_fields.general.brandstring
channel_fields.custom*object

Campos únicos por Marketplace

Additional properties: Yes

Inherits: ChannelFieldsCustom

channel_fields.custom.7* Amazonobject

Additional properties: Yes

channel_fields.custom.7.declared_hazmatstring

Declaración de materiales que necesitan manejo especial

Enum:
  • ghs - GHS (Globally Harmonized System)
  • transportation - Transportation
  • other - Otro
  • not_applicable - No aplica
  • waste - Waste
  • Storage - Storage
channel_fields.custom.7.fulfillment_activatestring

Manage Fulfillment by Amazon (FBA)

Enum:
  • activate_only_fbc - Activar FBA y desactivar FBM
  • activate_only_fbm - Activar FBM y desactivar FBA
channel_fields.custom.7.shipping_groupstring

Plantilla de Envío de Amazon

channel_fields.custom.7.custom_variation_tostring

Set Custom Variation to

Enum:
  • size - Size
  • color - Color
channel_fields.custom.7.discount_fromstring

Fecha de inicio

channel_fields.custom.7.discountnumber

Descuento

Format: float

channel_fields.custom.7.discount_tostring

Fecha final

channel_fields.custom.7.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.12* Linio Méxicoobject

Additional properties: Yes

channel_fields.custom.12.discount_fromstring

Fecha de inicio

channel_fields.custom.12.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.12.discount_tostring

Fecha final

channel_fields.custom.12.discountnumber

Descuento

Format: float

channel_fields.custom.13* Mercado Libre Méxicoobject

Additional properties: Yes

channel_fields.custom.13.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.13.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.13.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.13.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.13.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.13.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.13.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.15* Mercado Libre Colombiaobject

Additional properties: Yes

channel_fields.custom.15.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.15.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.15.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.15.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.15.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.15.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.15.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.16* Mercado Libre CBTobject

Additional properties: Yes

channel_fields.custom.16.price_clnumber

Precio Chile

Format: float

channel_fields.custom.16.price_conumber

Precio Colombia

Format: float

channel_fields.custom.16.price_mxnumber

Precio México

Format: float

channel_fields.custom.16.price_arnumber

Precio Argentina

Format: float

channel_fields.custom.16.price_brnumber

Precio Brasil

Format: float

channel_fields.custom.17* Linio Colombiaobject

Additional properties: Yes

channel_fields.custom.17.discount_fromstring

Fecha de inicio

channel_fields.custom.17.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.17.discount_tostring

Fecha final

channel_fields.custom.17.discountnumber

Descuento

Format: float

channel_fields.custom.1203* Linio Argentinaobject

Additional properties: Yes

channel_fields.custom.1203.discount_fromstring

Fecha de inicio

channel_fields.custom.1203.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.1203.discount_tostring

Fecha final

channel_fields.custom.1203.discountnumber

Descuento

Format: float

channel_fields.custom.1204* Linio Chileobject

Additional properties: Yes

channel_fields.custom.1204.discount_fromstring

Fecha de inicio

channel_fields.custom.1204.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.1204.discount_tostring

Fecha final

channel_fields.custom.1204.discountnumber

Descuento

Format: float

channel_fields.custom.1221* Dafiti Colombiaobject

Additional properties: Yes

channel_fields.custom.1221.discount_fromstring

Fecha de inicio

channel_fields.custom.1221.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.1221.discount_tostring

Fecha final

channel_fields.custom.1221.discountnumber

Descuento

Format: float

channel_fields.custom.1301* Mercado Libre Argentinaobject

Additional properties: Yes

channel_fields.custom.1301.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1301.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1301.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1301.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1301.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1301.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1301.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1302* Mercado Libre Chileobject

Additional properties: Yes

channel_fields.custom.1302.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1302.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1302.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1302.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1302.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1302.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1302.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1303* Mercado Libre Uruguayobject

Additional properties: Yes

channel_fields.custom.1303.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1303.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1303.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1303.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1303.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1303.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1303.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1304* Mercado Libre Ecuadorobject

Additional properties: Yes

channel_fields.custom.1304.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1304.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1304.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1304.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1304.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1304.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1304.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1305* Mercado Libre Peruobject

Additional properties: Yes

channel_fields.custom.1305.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
channel_fields.custom.1305.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

channel_fields.custom.1305.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

channel_fields.custom.1305.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

channel_fields.custom.1305.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

channel_fields.custom.1305.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
channel_fields.custom.1305.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
channel_fields.custom.1901* Shopifyobject

Additional properties: Yes

channel_fields.custom.1901.discountnumber

Descuento

Format: float

channel_fields.custom.1901.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.2101* Walmartobject

Additional properties: Yes

channel_fields.custom.2101.discount_fromstring

Descuento desde

channel_fields.custom.2101.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje
  • fixed - Precio fijo
channel_fields.custom.2101.discount_tostring

Descuento hasta

channel_fields.custom.2101.discountnumber

Descuento

Format: float

channel_fields.custom.2201* Claro Shopobject

Additional properties: Yes

channel_fields.custom.2201.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
channel_fields.custom.2201.discountnumber

Descuento

Format: float

channel_fields.custom.2201.tagsstring

Tags

channel_fields.custom.2201.delivery_timenumber

Tiempo de envío

channel_fields.custom.2201.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.2401* Liverpoolobject

Additional properties: Yes

channel_fields.custom.2401.discount_fromstring

Descuento desde

channel_fields.custom.2401.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
channel_fields.custom.2401.discount_tostring

Descuento hasta

channel_fields.custom.2401.discountnumber

Descuento

Format: float

channel_fields.custom.2501* Wishobject

Additional properties: Yes

channel_fields.custom.2501.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
channel_fields.custom.2501.wish_expressboolean

Habilitar Wish Express

channel_fields.custom.2501.delivery_timestring

Tiempo de envío

channel_fields.custom.2501.tagsstring

Tags

pk*string

Identificador del producto en Yuju

sku*string

Max. length: 40

stock*number

Format: int

price*number

Format: float

colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
color_textstring
secondary_colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
sizestring
asinstring
eanstring
upcstring
isbn_10string
isbn_13string
mpnstring
msrpnumber

Format: float

part_numberstring
scentstring
product_weightstring
janstring
custom_variation_valuestring

Max. length: 100

custom_i1number

Format: int

custom_i2number

Format: int

custom_i3number

Format: int

custom_i4number

Format: int

custom_i5number

Format: int

custom_s1string

Max. length: 200

custom_s2string

Max. length: 200

custom_s3string

Max. length: 200

custom_s4string

Max. length: 200

custom_s5string

Max. length: 200

custom_f1string
custom_f2string
custom_f3string
custom_f4string
custom_f5string
net_contentstring
name*string
brand*string
description*string
dimensions_unit*string
Enum:
  • cm
  • in
category_pk*number

Format: int

shipping_depth*number

Format: float

shipping_height*number

Format: float

shipping_pricenumber

Format: float

shipping_width*number

Format: float

shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
sku_simple*string
weight*number

Format: float

weight_unit*string
Enum:
  • kg
  • oz
genderstring
Enum:
  • baby
  • girl
  • boy
  • male
  • female
  • unisex
taxstring
Enum:
  • 0
  • 5
  • 8
  • 10
  • 10.5
  • 16
  • 19
  • 21
depthnumber

Format: float

heightnumber

Format: float

widthnumber

Format: float

delivery_timenumber

Format: int

official_store_idstring
linkstring
template_htmlstring
Enum:
  • default_plain_text
custom_variation_namestring

Max. length: 60

modelstring
conditionstring
Enum:
  • new
  • used
  • refurbished
availabilitystring
Enum:
  • in_stock
  • out_of_stock
  • preorder
characteristicsstring
custom_catstring
tagsstring
cable_lengthnumber

Format: float

company_cellphonestring
condition_notesstring
graphics_brandstring
graphics_ram_sizenumber

Format: float

graphics_ram_unitstring
Enum:
  • mb
  • gb
hard_drive_interfacestring
hard_drive_sizenumber

Format: int

hard_drive_speedstring
hard_drive_typestring
hard_drive_unitstring
Enum:
  • pb
  • mb
  • gb
  • tb
operating_systemstring
package_contentstring
processor_brandstring
processor_cores_qtynumber

Format: int

processor_socketstring
processor_speednumber

Format: float

processor_speed_unitstring
Enum:
  • mhz
  • ghz
processor_typestring
ram_sizenumber

Format: float

ram_size_unitstring
Enum:
  • kb
  • mb
  • gb
  • tb
ram_typestring
screen_resolutionstring
screen_sizenumber

Format: float

screen_typestring
shoe_typestring
usb_portsnumber

Format: int

vga_portsnumber

Format: int

hdmi_portsnumber

Format: int

volumenumber

Format: float

volume_unitstring
Enum:
  • l
  • ml
  • gal
youtube_linkstring
keywordsstring
warrantystring
warranty_monthsstring
materialstring
stylestring
artiststring
adultstring
batteries_includedstring
batteries_requiredstring
battery_typestring
Enum:
  • a
  • a76
  • aa
  • aaa
  • aaaa
  • c
  • d
  • 9v
  • 12v
  • 2/3a
  • 4/3a
  • 4/5a
  • cr123a
  • cr2
  • cr5
  • L-SC
  • p76
  • lithium_ion
  • lithium_metal
  • product_specific
media_formatstring
Enum:
  • blu_ray
  • dvd
  • hd_dvd
  • dvd_r
  • VHStape
  • umd
  • lp_record
  • audioCD
  • dvd_audio
  • cassette
  • videotape
suggested_age_minnumber

Format: int

suggested_age_maxnumber

Format: int

authorstring
editorstring
editionstring
publication_datestring
languagestring
number_of_pagesstring
genrestring
composerstring
performerstring
ethernet_portsnumber

Format: int

local_pick_upstring
publisherstring
book_titlestring
bindingstring
Enum:
  • Hardcover
  • Paperback
  • Kindleedition
vinyl_detailsstring
Enum:
  • lp
  • ep
  • 45
  • 78
  • 12_single
  • other
illustratorstring
international_shipping_costnumber

Format: float

shipping_cost_mxnumber

Format: float

shipping_cost_brnumber

Format: float

compatibilitystring
battery_capacitystring
production_countrynumber

Format: int

Enum:
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
circumference_diameterstring
adjustable_closingstring
sole_typestring
characterstring
for_walkersstring
shoes_by_kitstring
number_of_shoes_pairnumber

Format: int

connectivitystring
outdoor_rangestring
indoor_rangestring
night_visionstring
wifistring
color_screenstring
shatter_protectionstring
scratch_protectionstring
diaper_sizestring
diaper_typestring
perfume_typestring
suction_levelsnumber

Format: int

massaging_breatshieldstring
included_storage_cupsstring
waterproofstring
max_weightstring
one_hand_foldstring
security_system_typestring
baby_bottle_nipple_hole_sizestring
baby_bottle_materialstring
baby_bottle_nipple_materialstring
functionstring
with_fragancestring
metal_typestring
compatible_brandsstring
compatible_modelsstring
compatible_linesstring
catalog_numberstring
linestring
custom_product_typestring
product_code_satstring
providers[]number

Format: int

guarantorstring

Type Variation (object)

Variation

Additional properties: Yes

Inherits: object

Model

ParameterTypeDescription
pk*string

Identificador del producto en Yuju

sku*string

Max. length: 40

stock*number

Format: int

price*number

Format: float

colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
color_textstring
secondary_colorstring
Enum:
  • agua
  • amarillo
  • azul
  • azul acero
  • azul cielo
  • azul marino
  • azul oscuro
  • azul petroleo
  • beige
  • blanco
  • cafe
  • celeste
  • crema
  • dorado
  • esmeralda
  • fucsia
  • fucsia oscuro
  • gris
  • lavanda
  • lila
  • naranja
  • negro
  • ocre
  • piel
  • plateado
  • purpura
  • rojo
  • rosa
  • salmon
  • terracota
  • verde
  • verde claro
  • verde oscuro
  • vino
  • violeta
  • violeta oscuro
  • multicolor
  • caqui
  • chocolate
  • coral
  • coral claro
  • cyan
  • dorado oscuro
  • gris oscuro
  • marron
  • marron claro
  • naranja claro
  • naranja oscuro
  • rosa claro
  • suela
  • turquesa
  • verde lima
sizestring
asinstring
eanstring
upcstring
isbn_10string
isbn_13string
mpnstring
msrpnumber

Format: float

part_numberstring
scentstring
product_weightstring
janstring
custom_variation_valuestring

Max. length: 100

custom_i1number

Format: int

custom_i2number

Format: int

custom_i3number

Format: int

custom_i4number

Format: int

custom_i5number

Format: int

custom_s1string

Max. length: 200

custom_s2string

Max. length: 200

custom_s3string

Max. length: 200

custom_s4string

Max. length: 200

custom_s5string

Max. length: 200

custom_f1string
custom_f2string
custom_f3string
custom_f4string
custom_f5string
net_contentstring
channel_fields*object

Additional properties: Yes

channel_fields.general*object

Campos generales por Marketplace

Additional properties: Yes

channel_fields.general.stockstring
channel_fields.general.barcodestring
channel_fields.general.barcode_typestring
Enum:
  • ean
  • upc
  • jan
  • gtin
  • isbn_10
  • isbn_13
  • sku

Type ChannelFieldsGral (object)

ChannelFieldsGral

Campos generales por Marketplace

Additional properties: Yes

Inherits: object

Model

ParameterTypeDescription
namestring
stockstring
pricestring
shipping*number

Format: int

Enum:
  • 0
  • 1
  • 2
  • -1
shipping_pricestring
descriptionstring
characteristicsstring
brandstring
barcodestring
barcode_typestring
Enum:
  • ean
  • upc
  • jan
  • gtin
  • isbn_10
  • isbn_13
  • sku

Type ChannelFieldsCustom (object)

ChannelFieldsCustom

Campos únicos por Marketplace

Additional properties: Yes

Inherits: object

Model

ParameterTypeDescription
7* Amazonobject

Additional properties: Yes

7.declared_hazmatstring

Declaración de materiales que necesitan manejo especial

Enum:
  • ghs - GHS (Globally Harmonized System)
  • transportation - Transportation
  • other - Otro
  • not_applicable - No aplica
  • waste - Waste
  • Storage - Storage
7.fulfillment_activatestring

Manage Fulfillment by Amazon (FBA)

Enum:
  • activate_only_fbc - Activar FBA y desactivar FBM
  • activate_only_fbm - Activar FBM y desactivar FBA
7.shipping_groupstring

Plantilla de Envío de Amazon

7.custom_variation_tostring

Set Custom Variation to

Enum:
  • size - Size
  • color - Color
7.discount_fromstring

Fecha de inicio

7.discountnumber

Descuento

Format: float

7.discount_tostring

Fecha final

7.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
12* Linio Méxicoobject

Additional properties: Yes

12.discount_fromstring

Fecha de inicio

12.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
12.discount_tostring

Fecha final

12.discountnumber

Descuento

Format: float

13* Mercado Libre Méxicoobject

Additional properties: Yes

13.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
13.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

13.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

13.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

13.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

13.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
13.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
15* Mercado Libre Colombiaobject

Additional properties: Yes

15.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
15.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

15.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

15.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

15.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

15.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
15.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
16* Mercado Libre CBTobject

Additional properties: Yes

16.price_clnumber

Precio Chile

Format: float

16.price_conumber

Precio Colombia

Format: float

16.price_mxnumber

Precio México

Format: float

16.price_arnumber

Precio Argentina

Format: float

16.price_brnumber

Precio Brasil

Format: float

17* Linio Colombiaobject

Additional properties: Yes

17.discount_fromstring

Fecha de inicio

17.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
17.discount_tostring

Fecha final

17.discountnumber

Descuento

Format: float

1203* Linio Argentinaobject

Additional properties: Yes

1203.discount_fromstring

Fecha de inicio

1203.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
1203.discount_tostring

Fecha final

1203.discountnumber

Descuento

Format: float

1204* Linio Chileobject

Additional properties: Yes

1204.discount_fromstring

Fecha de inicio

1204.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
1204.discount_tostring

Fecha final

1204.discountnumber

Descuento

Format: float

1221* Dafiti Colombiaobject

Additional properties: Yes

1221.discount_fromstring

Fecha de inicio

1221.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
1221.discount_tostring

Fecha final

1221.discountnumber

Descuento

Format: float

1301* Mercado Libre Argentinaobject

Additional properties: Yes

1301.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
1301.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

1301.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

1301.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

1301.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

1301.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
1301.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
1302* Mercado Libre Chileobject

Additional properties: Yes

1302.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
1302.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

1302.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

1302.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

1302.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

1302.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
1302.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
1303* Mercado Libre Uruguayobject

Additional properties: Yes

1303.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
1303.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

1303.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

1303.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

1303.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

1303.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
1303.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
1304* Mercado Libre Ecuadorobject

Additional properties: Yes

1304.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
1304.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

1304.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

1304.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

1304.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

1304.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
1304.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
1305* Mercado Libre Peruobject

Additional properties: Yes

1305.fulfillment_activatestring

Manage Fulfillment by MercadoLibre (FBML)

Enum:
  • activate_only_fbc - Activar Fulfillment by Mercadolibre y desactivar Fulfillment by Marketplace
  • activate_only_fbm - Activar Fulfillment by Merchant y desactivar Fulfillment by Mercadolibre
1305.discount_2number

Descuento a compradores de nivel 1-2 (opcional, debe ser al menos 5% menor al descuento del nivel 3-6)

1305.catalog_shipping_pricenumber

Precio de envío en publicación por catálogo

Format: float

1305.discountnumber

Descuento a compradores de nivel 3-6 (debe ser al menos 5% menor que el precio original)

1305.catalog_pricenumber

Precio del producto en publicación por catálogo

Format: float

1305.catalog_shipping_methodstring

Método de envío en publicación por catálogo

Enum:
  • 2 - ACORDAR CON EL VENDEDOR
  • 1 - DEFINIDO POR MI
  • 0 - GRATIS
  • -1 - EL MARKETPLACE LO CALCULA
1305.catalog_listing_typestring

Tipo de publicación en publicación por catálogo

Enum:
  • gold_pro - PREMIUM (MESES SIN INTERESES)
  • gold_special - CLÁSICA
1901* Shopifyobject

Additional properties: Yes

1901.discountnumber

Descuento

Format: float

1901.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
2101* Walmartobject

Additional properties: Yes

2101.discount_fromstring

Descuento desde

2101.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje
  • fixed - Precio fijo
2101.discount_tostring

Descuento hasta

2101.discountnumber

Descuento

Format: float

2201* Claro Shopobject

Additional properties: Yes

2201.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
2201.discountnumber

Descuento

Format: float

2201.tagsstring

Tags

2201.delivery_timenumber

Tiempo de envío

2201.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
2401* Liverpoolobject

Additional properties: Yes

2401.discount_fromstring

Descuento desde

2401.discount_typestring

Tipo de descuento

Enum:
  • percentage - Porcentaje de descuento
  • fixed - Precio final de descuento
2401.discount_tostring

Descuento hasta

2401.discountnumber

Descuento

Format: float

2501* Wishobject

Additional properties: Yes

2501.custom_variation_tostring

Asignar variación personalizada a

Enum:
  • size - Tamaño
  • color - Color
2501.wish_expressboolean

Habilitar Wish Express

2501.delivery_timestring

Tiempo de envío

2501.tagsstring

Tags

Type Feed (object)

Feed

Additional properties: Yes

Inherits: object

Model

ParameterTypeDescription
pk*string
status*string
result*object

Additional properties: Yes

result.success*array
result.success[]object
result.errors*array
result.errors[]object

Examples

{
  "pk": "KYUV6XmGmQpN_PhN9G8LTx8JoTNWtfw5",
  "status": "fail",
  "result": {
    "success": [],
    "errors": [
      {
        "message": [
          "Método de envío es requerido"
        ],
        "sku_simple": "aaRcaIBtMfDqg",
        "sku": "aaRcaIBt",
        "product_pk": null,
        "name": "[TEST] eveniet tempore assumenda quidem velit"
      }
    ]
  }
}

{
  "pk": "3kvG-d3U63XwesclD5fARxTES7UEBreE",
  "status": "complete",
  "result": {
    "success": [
      {
        "sku_simple": "aaRcaIBtMfDqg",
        "sku": "aaRcaIBt",
        "product_pk": 5263,
        "name": "[TEST] eveniet tempore assumenda quidem velit"
      }
    ],
    "errors": []
  }
}

Type OrderSearch (object)

OrderSearch

Additional properties: Yes

Inherits: object

Model

ParameterTypeDescription
pk*string

Identificador interno de la orden en el marketplace

shop_pk*number

Identificador de la tienda en Yuju

marketplace_pk*string

Identificador del marketplace en Yuju:

Enum:
  • 4: Google Shopping
  • 7: Amazon
  • 13: Mercado Libre México
  • 15: Mercado Libre Colombia
  • 1301: Mercado Libre Argentina
  • 1302: Mercado Libre Chile
  • 1303: Mercado Libre Uruguay
  • 1304: Mercado Libre Ecuador
  • 1305: Mercado Libre Peru
  • 16: Mercado Libre CBT
  • 12: Linio México
  • 17: Linio Colombia
  • 1203: Linio Argentina
  • 1204: Linio Chile
  • 1205: Linio Perú
  • 1221: Dafiti Colombia
  • 1801: Magento
  • 1901: Shopify
  • 2001: Gestionix
  • 2101: Walmart
  • 2201: Claro Shop
  • 2301: Odoo
  • 2401: Liverpool
  • 2501: Wish
customer*object

Additional properties: Yes

customer.name*string

Nombre del comprador

customer.email*string

Correo proporcionado por el marketplace. En caso que el marketplace no lo proporcione se incluira undefined@madkting.com

delivery_deadline*string

Fecha limite para envíar el producto

payment_method*string

Método de pago proporcionado por el marketplace

reference*string

Número de pedido en el marketplace

status*string

Define si la orden está abierta o cerrada

Enum:
  • open
  • closed
actions*string

Define las acciones permitidas para la orden

Enum:
  • cancel: Cancelación de orden
  • cancel_feedback: Cancelación por medio de feedback (Mercadolibre)
  • refund: Realizar devolución de dinero
  • feedback: Calificar la orden (sirve tanto para marcar como entregada y/o cancelarla)
  • print_delivery_label: Guía de envío disponible para imprimir
  • manage_by_item: El marketplace permite realizar envíos por Item de manera separada
  • set_ready_to_ship: Confirmar orden
  • set_shipped: Notificar que el producto fué enviado
  • set_delivered: Notificar que el producto fué entregado
  • assign_tracking_number: Permite asignar un número de guía cuando se marca como enviada la orden
total*number

Total de la orden

Format: float

progress[]*object

Progreso y/o etapas de la orden

Additional properties: Yes

progress[].name*string
Enum:
  • paid: Orden pagada
  • ready_to_ship: Orden confirmada
  • shipped: Productos enviados
  • delivered: Productos entregados
  • canceled: Orden cancelada
  • refunded: Orden/Pago devuelto
  • with_mediation: Orden con reclamo
progress[].status*string
Enum:
  • pending: En espera de la acción
  • partial: Se ha realizado de forma parcial a alguno de los productos
  • in_progress: Se ha realizado la acción pero aún se espera respuesta del canal o se mantiene en proceso de realizarse
  • done: Acción realizada
paid_total*number

Total pagado por el comprador

Format: float

currency*string

Código de moneda de la transacción

created_at*string

Fecha de creación de orden (UTC) en el Marketplace

seller_shipping_cost*string

Costo cargado al vededor por el envío

marketplace_fee*number

Comisión del marketplace por la compra (sólo algunos marketplace lo proporcionan)

Format: float

paid_total_to_seller*number

Lo que el marketplace pagaría al vendedor

Format: float

payment_accredited_at*string

Fecha en que se aprobó el pago (UTC)

Examples

{
"pk": "2348439214",
"shop_pk": 2084432,
"marketplace_pk": 13,
"customer": {
  "name": "Misael Hernandez",
  "email": "mhernandez.ogizdkmzzgm4tmmbx+2-snbwr1s@mail.mercadolibre.com.mx"
},
"delivery_deadline": "2019-12-16",
"notes": false,
"payment_method": "account_money",
"reference": "2348439214",
"status": "open",
"actions": ["feedback", "manage_notes", "refund", "cancel_feedback", "print_delivery_label", "set_ready_to_ship"],
"total": 949.0,
"progress": [{
  "name": "paid",
  "status": "done"
}, {
  "name": "ready_to_ship",
  "status": "pending"
}, {
  "name": "shipped",
  "status": "pending"
}, {
  "name": "delivered",
  "status": "pending"
}],
"paid_total": 949.0,
"currency": "mxn",
"created_at": "2019-12-16T14:46:42Z",
"seller_shipping_cost": 65.5,
"marketplace_fee": 123.37,
"paid_total_to_seller": 825.63,
"payment_accredited_at": "2019-12-16T14:47:34Z"

Type OrderUpdate (object)

OrderUpdate

Additional properties: Yes

Inherits: object

Model

ParameterTypeDescription
pk*string

Identificador interno de la orden en el marketplace

shop_pk*number

Identificador de la tienda en Yuju

marketplace_pk*string

Identificador del marketplace en Yuju:

Enum:
  • 4: Google Shopping
  • 7: Amazon
  • 13: Mercado Libre México
  • 15: Mercado Libre Colombia
  • 1301: Mercado Libre Argentina
  • 1302: Mercado Libre Chile
  • 1303: Mercado Libre Uruguay
  • 1304: Mercado Libre Ecuador
  • 1305: Mercado Libre Peru
  • 16: Mercado Libre CBT
  • 12: Linio México
  • 17: Linio Colombia
  • 1203: Linio Argentina
  • 1204: Linio Chile
  • 1205: Linio Perú
  • 1221: Dafiti Colombia
  • 1801: Magento
  • 1901: Shopify
  • 2001: Gestionix
  • 2101: Walmart
  • 2201: Claro Shop
  • 2301: Odoo
  • 2401: Liverpool
  • 2501: Wish
reference*string

Referencia del objeto que cambió

event*string

Evento realizado

Type OrderIntegration (object)

OrderIntegration

Additional properties: Yes

Inherits: object

Model

ParameterTypeDescription
pkstring

Identificador de la integración en Yuju (Solo se retorna en el response body de post)

order_pkstring

Identificador de la orden a la que pertenece la integración en Yuju (Solo se retorna en el response body de post)

marketplace_pknumber

Identificador del marketplace al que pertenece la orden en Yuju (Solo se retorna en el response body de post)

Format: int

shop_pknumber

Identificador de la tienda a la que pertenece la orden en Yuju (Solo se retorna en el response body de post)

Format: int

module_name*string

Nombre del modulo externo con el que se hace la integración de la orden

status*string

Status de la orden o documento en el modulo externo donde se hizo la integración

message*string

Si no se envia un mensaje por parte del modulo externo se debe enviar un string vacío

reference*string

Referencia de la orden o documento en el modulo externo

type*string

Tipo de documento en modulo externo

extra*object

Objeto con campos extra relacionados con la orden o documento en el modulo externo Si no hay campos extra se debe enviar un objeto vacío: {}

created_atstring

(Solo se retorna en el response body de post)

updated_atstring

(Solo se retorna en el response body de post)