SlideShare ist ein Scribd-Unternehmen logo
1 von 37
Leandro Bertalot
Novedades en la API
MercadoLibre Developer Relations
Developer Conference
● Cambios Generales
● Lo Nuevo en Marketplace
● Lo Nuevo en Clasificados
● Mejoras Dev Platform http://developers.mercadolibre.com
Agend
a
Developer Conference
● Items JSON Validation Improvements
● Listing Types and Item Upgrades
● Addresses API
● Revoke Access to Your Application
● Trends API
Cambios
Generales
Developer Conference
Cambios
Generales
Items JSON Validation Improvements
Example
{
"seller_id":,
"id",
"price":"p",
"seller_contact":null,
"pictures": [[1,2,3]]
}
Developer Conference
Output
{
"message":"body.invalid_field_types",
"error":"[
invalid property type: [price] expected Number but was String value: p,
invalid property type: [seller_contact] expected Map but was Null value: null,
invalid property type: [pictures[0]] expected Map but was JSONArray value: [1,
2, 3],
invalid property type: [seller_id] expected Number but was String value: id
]",
"status":400,
"cause":[]
}
Cambios
Generales
Items JSON Validation Improvements
Developer Conference
Get Listing types
https://api.mercadolibre.com/sites/MLA/listing_types
Cambios
Generales
Listing types and Item Upgrades
Developer Conference
Get Listing Types availables by User
https://api.mercadolibre.com/users/{Cust_id}/available_listing_types?category_id={Ca
tegory_id}&access_token=$ACCESS_TOKEN
Cambios
Generales
{
"category_id": "MLA3530",
"available": [
{
"site_id": "MLA",
"id": "gold",
"name": "Oro",
"remaining_listings": null
},
{
"site_id": "MLA",
"id": "bronce",
"name": "Bronce",
"remaining_listings": null
}
]
}
Listing types and Item Upgrades
Developer Conference
Get Available Listing Upgrades
https://api.mercadolibre.com/items/{Item_id}/available_upgrades?access_token=$AC
CESS_TOKEN
Cambios
Generales
Listing types and Item Upgrades
{
"category_id": "MLA3530",
"available": [
{
"site_id": "MLA",
"id": "gold_premium",
"name": "Oro Premium",
"remaining_listings": null
},
{
"site_id": "MLA",
"id": "gold_special",
"name": "Oro Profesional",
"remaining_listings": null
}
]
}
Developer Conference
Addresses API
Cambios
Generales
https://api.mercadolibre.com/users/{User_id}/addresses?access_token=XXXXXX
Get addresses from a User
Developer Conference
Revoke Access to Your APP
Cambios
Generales
curl -X DELETE -H "Content-Type:application/json"
https://api.mercadolibre.com/users/{cust_Id}/applications/{app_id}?access_token=
$ACCESS_TOKEN
Developer Conference
Trends
Cambios
Generales
https://tendencias.mercadolibre.com.ar
Developer Conference
Trends API
Cambios
Generales
By country By country and Category
curl -X GET
https://api.mercadolibre.com/sites/{site_id}/trends/s
earch
curl -X GET
https://api.mercadolibre.com/sites/{site_id}/trends/sear
ch?category={category_id}
Developer Conference
● Cambios Generales
● Lo Nuevo en Marketplace
● Lo Nuevo en Clasificados
● Mejoras Dev Platform http://developers.mercadolibre.com
Agend
a
Developer Conference
● Listing Prices Calculator
● New Feedback API
● API Improvements: Payment information in Orders
● Changes on Relistings
Lo Nuevo en Marketplace
Developer Conference
Listing prices calculator
https://api.mercadolibre.com/sites/MLA/listing_prices?price=5000&category_id=MLA3738
Get Listing Price
Lo Nuevo en Marketplace
Developer Conference
New Feedback API
curl -X POST -H "Content-Type: application/json" -d
'{
"fulfilled": false,
"rating": "neutral",
"message": "Operation not completed",
"reason": "THEY_DIDNT_ANSWER",
"restock_item": true,
"has_seller_refunded_money": false
}'
"https://api.mercadolibre.com/orders/{order_Id}/feedback?version=3.0&access_token=$ACCE
SS_TOKEN”
Post Feedback
Lo Nuevo en Marketplace
Developer Conference
New Feedback API
curl -X POST -H "Content-Type: application/json" -d'{
"reply":"COMMENT 2."
}'
"https://api.mercadolibre.com/feedback/{feedback_Id}/reply?version=3.0&
access_token=$ACCESS_TOKEN"
Post Reply
Change Feedback
curl -X PUT -H "Content-Type: application/json" -d '{
"fulfilled": true,
"rating": "positive",
"message": "It’s ok.",
}'
"https://api.mercadolibre.com//feedback/{feedback_id}?version=3.0&acce
ss_token=$ACCESS_TOKEN"
Lo Nuevo en Marketplace
Developer Conference
Payment information in Orders
Lo Nuevo en Marketplace
{
"id": 123123123,
…..
"payments": [
{
"id": 843847143,
"order_id": 881939618,
"payer_id": 132370569,
"collector": {
"id": 157251523
},
"card_id": null,
"site_id": "MCO",
"reason": null,
"payment_method_id": null,
"currency_id": "COP",
"installments": null,
"issuer_id": null,
"atm_transfer_reference": {
"company_id": null,
"transaction_id": null
},
…..
Response
…..
"coupon_id": null,
"activation_uri": null,
"available_actions": null,
"status": "approved",
"status_code": null,
"status_detail": null,
"transaction_amount": 124900,
"shipping_cost": 0,
"coupon_amount": 0,
"overpaid_amount": 0,
"total_paid_amount": 124900,
"date_created": "2014-09-
15T10:46:52.000-04:00",
"date_last_modified": "2014-09-
19T16:51:13.000-04:00"
}
]
…..
https://api.mercadolibre.com/orders/{Order_id}?access_token=ACCESS_TOKEN
Developer Conference
Lo Nuevo en Marketplace
…
"initial_quantity": 3,
"available_quantity": 3,
"sold_quantity": 1,
…
https://api.mercadolibre.com/items/MLA516387765
Relistings
Developer Conference
● Cambios Generales
● Lo Nuevo en Marketplace
● Lo Nuevo en Clasificados
● Mejoras Dev Platform
http://developers.mercadolibre.com
Agend
a
Developer Conference
● Classified Location Selection & Search
● Classified contacts API
● User Promotion Packs API
Lo Nuevo en Clasificados
Developer Conference
Classified Location Selection & Search
Lo Nuevo en Clasificados
https://api.mercadolibre.com/classified_locations/countries/AR
https://api.mercadolibre.com/classified_locations/neighborhoods/TUxBQlZJTDM5NTda
Developer Conference
Classified Location Selection & Search
Lo Nuevo en Clasificados
https://api.mercadolibre.com/sites/MLA/search?item_location=lat:-37.987148_-
30.987148,lon:-57.5483864_-50.5483864&category=MLA50278
Developer Conference
Classified Contacts API
Lo Nuevo en Clasificados
Developer Conference
Classified Contacts API
Lo Nuevo en Clasificados
https://api.mercadolibre.com/items/MLA508401142/contacts/questions?date_from=2014-08-
01T00:00:00.000-03:00&date_to=2015-03-02T23:59:59.999
Get Qty Questions by date on Item
https://api.mercadolibre.com/users/113601228/contacts/questions?date_from=2014
-08-01T00:00:00.000-03:00&date_to=2015-03-02T23:59:59.999
Get Qty Questions by date on User
Developer Conference
¿Y que pasó con “Ver Teléfono”?
Developer Conference
https://api.mercadolibre.com/items/MLA554327372/contacts/phone_views?date_from=2011-
08-01T00:00:00.000-03:00&date_to=2015-06-02T23:59:59.999
Get Qty Phone Views by date on Item
https://api.mercadolibre.com/users/113601228/contacts/phone_views?date_from
=2015-01-01T00:00:00.000-03:00&date_to=2015-02-02T23:59:5
Get Qty Phone Views by date on User
Classified Contacts API
Lo Nuevo en Clasificados
Developer Conference
Promotion Packs
Lo Nuevo en Clasificados
https://api.mercadolibre.com/categories/MLA1743/classifieds_promotion_packs
Get promotion packs
Developer Conference
Promotion Packs
Lo Nuevo en Clasificados
https://api.mercadolibre.com/users/{user_id}/cla
ssifieds_promotion_packs?access_token=$AC
CESS_TOKEN;
Get packages engaged by an user
Developer Conference
● Cambios Generales
● Lo Nuevo en Marketplace
● Lo Nuevo en Clasificados
● Mejoras Dev Platform
http://developers.mercadolibre.com
Agend
a
Developer Conference
Nuevo API-Directory
Mejoras Dev
Platform
Developer Conference
Nuevo API-Directory
Mejoras Dev
Platform
Developer Conference
Nuevo Foro Developers
Mejoras Dev
Platform
Al Foro
entrar tu
debes, si en
Jedi
convertirte
tu quieres
Developer Conference
Nuevo Foro Developers
Mejoras Dev
Platform
Developer Conference
Mejoras Dev
Platform
http://developers.mercadolibre.com/subscription/
Developer Conference
Mejoras Dev
Platform
Información sobre Eventos y Cambios en la API
Developer Conference
FIN
@LeandroBertalot

Weitere ähnliche Inhalte

Andere mochten auch

Hjelp vi flyr - alt om droner i TV-produksjon
Hjelp vi flyr - alt om droner i TV-produksjonHjelp vi flyr - alt om droner i TV-produksjon
Hjelp vi flyr - alt om droner i TV-produksjonnrkbeta
 
moragoprl !!! 2008 Sevilla - Visita turistica !!!
moragoprl !!! 2008 Sevilla - Visita turistica !!!moragoprl !!! 2008 Sevilla - Visita turistica !!!
moragoprl !!! 2008 Sevilla - Visita turistica !!!Pedro Rodriguez
 
More than 1600 backlinks to Frontware.com
More than 1600 backlinks to Frontware.comMore than 1600 backlinks to Frontware.com
More than 1600 backlinks to Frontware.comFrontware International
 
Guía de trabajos prácticos
Guía de trabajos prácticosGuía de trabajos prácticos
Guía de trabajos prácticossoli10
 
Telmisartan ramipril wiki
Telmisartan ramipril wikiTelmisartan ramipril wiki
Telmisartan ramipril wikiJavier Ortega
 
Disrupt and Become Indispensable
Disrupt and Become IndispensableDisrupt and Become Indispensable
Disrupt and Become IndispensableMotivate Design
 
Content Startegy for a B2B Energy Client
Content Startegy for a B2B Energy Client Content Startegy for a B2B Energy Client
Content Startegy for a B2B Energy Client kmartchouk
 
Actividades de ecoturismo slideshare parte 1
Actividades de ecoturismo slideshare parte 1Actividades de ecoturismo slideshare parte 1
Actividades de ecoturismo slideshare parte 1nayelysantiago
 
Hoja de respuestas vertical de 60
Hoja de respuestas vertical de 60Hoja de respuestas vertical de 60
Hoja de respuestas vertical de 60Magu Sociales
 
Dictamen Asociación FF.MM Reclama por Escalafón de Mérito
Dictamen Asociación FF.MM Reclama por Escalafón de MéritoDictamen Asociación FF.MM Reclama por Escalafón de Mérito
Dictamen Asociación FF.MM Reclama por Escalafón de MéritoNelson Leiva®
 
Mesa Redonda: FINTECH. Revolución digital en el mundo Financiero. La oportuni...
Mesa Redonda: FINTECH. Revolución digital en el mundo Financiero. La oportuni...Mesa Redonda: FINTECH. Revolución digital en el mundo Financiero. La oportuni...
Mesa Redonda: FINTECH. Revolución digital en el mundo Financiero. La oportuni...AMETIC
 
TBIZ 2012 - Tecniche Inventive
TBIZ 2012 - Tecniche InventiveTBIZ 2012 - Tecniche Inventive
TBIZ 2012 - Tecniche InventiveTechnologyBIZ
 
Planifique su Mercadeo Sobre un Ecosistema Digital
Planifique su Mercadeo Sobre un Ecosistema DigitalPlanifique su Mercadeo Sobre un Ecosistema Digital
Planifique su Mercadeo Sobre un Ecosistema DigitalSocialmedios Incorporated
 

Andere mochten auch (20)

Hjelp vi flyr - alt om droner i TV-produksjon
Hjelp vi flyr - alt om droner i TV-produksjonHjelp vi flyr - alt om droner i TV-produksjon
Hjelp vi flyr - alt om droner i TV-produksjon
 
Oracle compra Sun
Oracle compra SunOracle compra Sun
Oracle compra Sun
 
55 PLUS Program pp
55 PLUS Program pp55 PLUS Program pp
55 PLUS Program pp
 
Claudia sanchez
Claudia sanchezClaudia sanchez
Claudia sanchez
 
PROGRAMA DE FESTIVIDADES 2014 - LIMÓN INDANZA
PROGRAMA DE FESTIVIDADES 2014 - LIMÓN INDANZAPROGRAMA DE FESTIVIDADES 2014 - LIMÓN INDANZA
PROGRAMA DE FESTIVIDADES 2014 - LIMÓN INDANZA
 
moragoprl !!! 2008 Sevilla - Visita turistica !!!
moragoprl !!! 2008 Sevilla - Visita turistica !!!moragoprl !!! 2008 Sevilla - Visita turistica !!!
moragoprl !!! 2008 Sevilla - Visita turistica !!!
 
Non western art
Non western artNon western art
Non western art
 
More than 1600 backlinks to Frontware.com
More than 1600 backlinks to Frontware.comMore than 1600 backlinks to Frontware.com
More than 1600 backlinks to Frontware.com
 
Guía de trabajos prácticos
Guía de trabajos prácticosGuía de trabajos prácticos
Guía de trabajos prácticos
 
Telmisartan ramipril wiki
Telmisartan ramipril wikiTelmisartan ramipril wiki
Telmisartan ramipril wiki
 
Disrupt and Become Indispensable
Disrupt and Become IndispensableDisrupt and Become Indispensable
Disrupt and Become Indispensable
 
RENOVATIO IMPERII ROMANORUM
RENOVATIO IMPERII ROMANORUMRENOVATIO IMPERII ROMANORUM
RENOVATIO IMPERII ROMANORUM
 
Content Startegy for a B2B Energy Client
Content Startegy for a B2B Energy Client Content Startegy for a B2B Energy Client
Content Startegy for a B2B Energy Client
 
Actividades de ecoturismo slideshare parte 1
Actividades de ecoturismo slideshare parte 1Actividades de ecoturismo slideshare parte 1
Actividades de ecoturismo slideshare parte 1
 
Hoja de respuestas vertical de 60
Hoja de respuestas vertical de 60Hoja de respuestas vertical de 60
Hoja de respuestas vertical de 60
 
Imágenes y Palabras
Imágenes y PalabrasImágenes y Palabras
Imágenes y Palabras
 
Dictamen Asociación FF.MM Reclama por Escalafón de Mérito
Dictamen Asociación FF.MM Reclama por Escalafón de MéritoDictamen Asociación FF.MM Reclama por Escalafón de Mérito
Dictamen Asociación FF.MM Reclama por Escalafón de Mérito
 
Mesa Redonda: FINTECH. Revolución digital en el mundo Financiero. La oportuni...
Mesa Redonda: FINTECH. Revolución digital en el mundo Financiero. La oportuni...Mesa Redonda: FINTECH. Revolución digital en el mundo Financiero. La oportuni...
Mesa Redonda: FINTECH. Revolución digital en el mundo Financiero. La oportuni...
 
TBIZ 2012 - Tecniche Inventive
TBIZ 2012 - Tecniche InventiveTBIZ 2012 - Tecniche Inventive
TBIZ 2012 - Tecniche Inventive
 
Planifique su Mercadeo Sobre un Ecosistema Digital
Planifique su Mercadeo Sobre un Ecosistema DigitalPlanifique su Mercadeo Sobre un Ecosistema Digital
Planifique su Mercadeo Sobre un Ecosistema Digital
 

Ähnlich wie Novedades de la API - Leandro Bertalot

GraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedGraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedMarcinStachniuk
 
GraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedGraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedMarcinStachniuk
 
API-Entwicklung bei XING
API-Entwicklung bei XINGAPI-Entwicklung bei XING
API-Entwicklung bei XINGMark Schmidt
 
GraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedGraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedMarcinStachniuk
 
GraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedGraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedMarcinStachniuk
 
FIWARE Developers Week_ Introduction to Managing Context Information at Large...
FIWARE Developers Week_ Introduction to Managing Context Information at Large...FIWARE Developers Week_ Introduction to Managing Context Information at Large...
FIWARE Developers Week_ Introduction to Managing Context Information at Large...FIWARE
 
Eurosentiment - Developing a new service
Eurosentiment - Developing a new serviceEurosentiment - Developing a new service
Eurosentiment - Developing a new servicemario_munoz
 
201410 2 fiware-orion-contextbroker
201410 2 fiware-orion-contextbroker201410 2 fiware-orion-contextbroker
201410 2 fiware-orion-contextbrokerFIWARE
 
GraphQL - gdy API RESTowe to za mało
GraphQL - gdy API RESTowe to za małoGraphQL - gdy API RESTowe to za mało
GraphQL - gdy API RESTowe to za małoMarcinStachniuk
 
[DevCrowd] GraphQL - gdy API RESTowe to za mało
[DevCrowd] GraphQL - gdy API RESTowe to za mało[DevCrowd] GraphQL - gdy API RESTowe to za mało
[DevCrowd] GraphQL - gdy API RESTowe to za małoMarcinStachniuk
 
GraphQL - when REST API is not enough - lessons learned
GraphQL - when REST API is not enough - lessons learnedGraphQL - when REST API is not enough - lessons learned
GraphQL - when REST API is not enough - lessons learnedMarcinStachniuk
 
アプリで簡単にスタンプを販売するためのAPI開発
アプリで簡単にスタンプを販売するためのAPI開発アプリで簡単にスタンプを販売するためのAPI開発
アプリで簡単にスタンプを販売するためのAPI開発LINE Corporation
 
IBM Db2 JSON 11.5
IBM  Db2 JSON 11.5IBM  Db2 JSON 11.5
IBM Db2 JSON 11.5Phil Downey
 
BruJUG Brussels GraphQL when RESR API is to less - lessons learned
BruJUG Brussels GraphQL when RESR API is to less - lessons learnedBruJUG Brussels GraphQL when RESR API is to less - lessons learned
BruJUG Brussels GraphQL when RESR API is to less - lessons learnedMarcinStachniuk
 
How Netflix Is Solving Authorization Across Their Cloud
How Netflix Is Solving Authorization Across Their CloudHow Netflix Is Solving Authorization Across Their Cloud
How Netflix Is Solving Authorization Across Their CloudTorin Sandall
 
Context-aware application development with FIWARE #CPBR8
Context-aware application development with FIWARE #CPBR8Context-aware application development with FIWARE #CPBR8
Context-aware application development with FIWARE #CPBR8Fermin Galan
 
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...Codemotion
 
Novidades das APIs wesley nascimento
Novidades das APIs   wesley nascimentoNovidades das APIs   wesley nascimento
Novidades das APIs wesley nascimentofsolari
 
GraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedGraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedMarcinStachniuk
 

Ähnlich wie Novedades de la API - Leandro Bertalot (20)

GraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedGraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learned
 
GraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedGraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learned
 
API-Entwicklung bei XING
API-Entwicklung bei XINGAPI-Entwicklung bei XING
API-Entwicklung bei XING
 
GraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedGraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learned
 
GraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedGraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learned
 
FIWARE Developers Week_ Introduction to Managing Context Information at Large...
FIWARE Developers Week_ Introduction to Managing Context Information at Large...FIWARE Developers Week_ Introduction to Managing Context Information at Large...
FIWARE Developers Week_ Introduction to Managing Context Information at Large...
 
Eurosentiment - Developing a new service
Eurosentiment - Developing a new serviceEurosentiment - Developing a new service
Eurosentiment - Developing a new service
 
201410 2 fiware-orion-contextbroker
201410 2 fiware-orion-contextbroker201410 2 fiware-orion-contextbroker
201410 2 fiware-orion-contextbroker
 
GraphQL - gdy API RESTowe to za mało
GraphQL - gdy API RESTowe to za małoGraphQL - gdy API RESTowe to za mało
GraphQL - gdy API RESTowe to za mało
 
MongoDB Meetup
MongoDB MeetupMongoDB Meetup
MongoDB Meetup
 
[DevCrowd] GraphQL - gdy API RESTowe to za mało
[DevCrowd] GraphQL - gdy API RESTowe to za mało[DevCrowd] GraphQL - gdy API RESTowe to za mało
[DevCrowd] GraphQL - gdy API RESTowe to za mało
 
GraphQL - when REST API is not enough - lessons learned
GraphQL - when REST API is not enough - lessons learnedGraphQL - when REST API is not enough - lessons learned
GraphQL - when REST API is not enough - lessons learned
 
アプリで簡単にスタンプを販売するためのAPI開発
アプリで簡単にスタンプを販売するためのAPI開発アプリで簡単にスタンプを販売するためのAPI開発
アプリで簡単にスタンプを販売するためのAPI開発
 
IBM Db2 JSON 11.5
IBM  Db2 JSON 11.5IBM  Db2 JSON 11.5
IBM Db2 JSON 11.5
 
BruJUG Brussels GraphQL when RESR API is to less - lessons learned
BruJUG Brussels GraphQL when RESR API is to less - lessons learnedBruJUG Brussels GraphQL when RESR API is to less - lessons learned
BruJUG Brussels GraphQL when RESR API is to less - lessons learned
 
How Netflix Is Solving Authorization Across Their Cloud
How Netflix Is Solving Authorization Across Their CloudHow Netflix Is Solving Authorization Across Their Cloud
How Netflix Is Solving Authorization Across Their Cloud
 
Context-aware application development with FIWARE #CPBR8
Context-aware application development with FIWARE #CPBR8Context-aware application development with FIWARE #CPBR8
Context-aware application development with FIWARE #CPBR8
 
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...
 
Novidades das APIs wesley nascimento
Novidades das APIs   wesley nascimentoNovidades das APIs   wesley nascimento
Novidades das APIs wesley nascimento
 
GraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learnedGraphQL - when REST API is to less - lessons learned
GraphQL - when REST API is to less - lessons learned
 

Mehr von fsolari

Live code - Pablo Moretti
Live code - Pablo Moretti Live code - Pablo Moretti
Live code - Pablo Moretti fsolari
 
Verticales - Federico Porrini y Matias Medeot
Verticales - Federico Porrini y Matias MedeotVerticales - Federico Porrini y Matias Medeot
Verticales - Federico Porrini y Matias Medeotfsolari
 
Tendencias Mobile - Neftali Segovia
Tendencias Mobile - Neftali SegoviaTendencias Mobile - Neftali Segovia
Tendencias Mobile - Neftali Segoviafsolari
 
Cómo publicar un item - Franco Martinez
Cómo publicar un item - Franco MartinezCómo publicar un item - Franco Martinez
Cómo publicar un item - Franco Martinezfsolari
 
Autorización - Leandro Bertalot
Autorización - Leandro BertalotAutorización - Leandro Bertalot
Autorización - Leandro Bertalotfsolari
 
API Overview - Migcenel Gonzalez y Josué Gerardo
API Overview - Migcenel Gonzalez y Josué GerardoAPI Overview - Migcenel Gonzalez y Josué Gerardo
API Overview - Migcenel Gonzalez y Josué Gerardofsolari
 
Ibushak - Salomon y Mauricio Bouzali
Ibushak - Salomon y Mauricio BouzaliIbushak - Salomon y Mauricio Bouzali
Ibushak - Salomon y Mauricio Bouzalifsolari
 
Monetización - Ignacio Caride
Monetización - Ignacio CarideMonetización - Ignacio Caride
Monetización - Ignacio Caridefsolari
 
Herramientas para vendedores - Nicolas Coniglio
Herramientas para vendedores - Nicolas ConiglioHerramientas para vendedores - Nicolas Coniglio
Herramientas para vendedores - Nicolas Conigliofsolari
 
MercadoEnvíos - Soledad Dematteo
MercadoEnvíos - Soledad DematteoMercadoEnvíos - Soledad Dematteo
MercadoEnvíos - Soledad Dematteofsolari
 
MercadoPago - Ariel Leiva
MercadoPago - Ariel LeivaMercadoPago - Ariel Leiva
MercadoPago - Ariel Leivafsolari
 
Daniel Rabinovich
Daniel RabinovichDaniel Rabinovich
Daniel Rabinovichfsolari
 
Bienvenida - Marcos Galperin
Bienvenida  - Marcos GalperinBienvenida  - Marcos Galperin
Bienvenida - Marcos Galperinfsolari
 
MercadoShops - Johnny Wong
MercadoShops - Johnny WongMercadoShops - Johnny Wong
MercadoShops - Johnny Wongfsolari
 
Open platform - Hernan Di Chello / José Garcia
Open platform  - Hernan Di Chello / José GarciaOpen platform  - Hernan Di Chello / José Garcia
Open platform - Hernan Di Chello / José Garciafsolari
 
Live coding - Pablo Moretti
Live coding - Pablo MorettiLive coding - Pablo Moretti
Live coding - Pablo Morettifsolari
 
Integración en verticales - Federico Porrini | Matias Medeot
Integración en verticales	- Federico Porrini | Matias MedeotIntegración en verticales	- Federico Porrini | Matias Medeot
Integración en verticales - Federico Porrini | Matias Medeotfsolari
 
Creando Herramientas para Vendedores - Nicolas Coniglio
Creando Herramientas para Vendedores - Nicolas ConiglioCreando Herramientas para Vendedores - Nicolas Coniglio
Creando Herramientas para Vendedores - Nicolas Conigliofsolari
 
Solución Mobile de Pagos - Sergio Cirielli
Solución Mobile de Pagos - Sergio CirielliSolución Mobile de Pagos - Sergio Cirielli
Solución Mobile de Pagos - Sergio Ciriellifsolari
 
Novedades de la Plataforma MercadoEnvios - Soledad Dematteo
Novedades de la Plataforma MercadoEnvios - Soledad DematteoNovedades de la Plataforma MercadoEnvios - Soledad Dematteo
Novedades de la Plataforma MercadoEnvios - Soledad Dematteofsolari
 

Mehr von fsolari (20)

Live code - Pablo Moretti
Live code - Pablo Moretti Live code - Pablo Moretti
Live code - Pablo Moretti
 
Verticales - Federico Porrini y Matias Medeot
Verticales - Federico Porrini y Matias MedeotVerticales - Federico Porrini y Matias Medeot
Verticales - Federico Porrini y Matias Medeot
 
Tendencias Mobile - Neftali Segovia
Tendencias Mobile - Neftali SegoviaTendencias Mobile - Neftali Segovia
Tendencias Mobile - Neftali Segovia
 
Cómo publicar un item - Franco Martinez
Cómo publicar un item - Franco MartinezCómo publicar un item - Franco Martinez
Cómo publicar un item - Franco Martinez
 
Autorización - Leandro Bertalot
Autorización - Leandro BertalotAutorización - Leandro Bertalot
Autorización - Leandro Bertalot
 
API Overview - Migcenel Gonzalez y Josué Gerardo
API Overview - Migcenel Gonzalez y Josué GerardoAPI Overview - Migcenel Gonzalez y Josué Gerardo
API Overview - Migcenel Gonzalez y Josué Gerardo
 
Ibushak - Salomon y Mauricio Bouzali
Ibushak - Salomon y Mauricio BouzaliIbushak - Salomon y Mauricio Bouzali
Ibushak - Salomon y Mauricio Bouzali
 
Monetización - Ignacio Caride
Monetización - Ignacio CarideMonetización - Ignacio Caride
Monetización - Ignacio Caride
 
Herramientas para vendedores - Nicolas Coniglio
Herramientas para vendedores - Nicolas ConiglioHerramientas para vendedores - Nicolas Coniglio
Herramientas para vendedores - Nicolas Coniglio
 
MercadoEnvíos - Soledad Dematteo
MercadoEnvíos - Soledad DematteoMercadoEnvíos - Soledad Dematteo
MercadoEnvíos - Soledad Dematteo
 
MercadoPago - Ariel Leiva
MercadoPago - Ariel LeivaMercadoPago - Ariel Leiva
MercadoPago - Ariel Leiva
 
Daniel Rabinovich
Daniel RabinovichDaniel Rabinovich
Daniel Rabinovich
 
Bienvenida - Marcos Galperin
Bienvenida  - Marcos GalperinBienvenida  - Marcos Galperin
Bienvenida - Marcos Galperin
 
MercadoShops - Johnny Wong
MercadoShops - Johnny WongMercadoShops - Johnny Wong
MercadoShops - Johnny Wong
 
Open platform - Hernan Di Chello / José Garcia
Open platform  - Hernan Di Chello / José GarciaOpen platform  - Hernan Di Chello / José Garcia
Open platform - Hernan Di Chello / José Garcia
 
Live coding - Pablo Moretti
Live coding - Pablo MorettiLive coding - Pablo Moretti
Live coding - Pablo Moretti
 
Integración en verticales - Federico Porrini | Matias Medeot
Integración en verticales	- Federico Porrini | Matias MedeotIntegración en verticales	- Federico Porrini | Matias Medeot
Integración en verticales - Federico Porrini | Matias Medeot
 
Creando Herramientas para Vendedores - Nicolas Coniglio
Creando Herramientas para Vendedores - Nicolas ConiglioCreando Herramientas para Vendedores - Nicolas Coniglio
Creando Herramientas para Vendedores - Nicolas Coniglio
 
Solución Mobile de Pagos - Sergio Cirielli
Solución Mobile de Pagos - Sergio CirielliSolución Mobile de Pagos - Sergio Cirielli
Solución Mobile de Pagos - Sergio Cirielli
 
Novedades de la Plataforma MercadoEnvios - Soledad Dematteo
Novedades de la Plataforma MercadoEnvios - Soledad DematteoNovedades de la Plataforma MercadoEnvios - Soledad Dematteo
Novedades de la Plataforma MercadoEnvios - Soledad Dematteo
 

Kürzlich hochgeladen

TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 

Kürzlich hochgeladen (20)

TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 

Novedades de la API - Leandro Bertalot