Documentación Mercado Libre
Descubre toda la información que debes conocer sobre las APIs de Mercado Libre.Documentación
Start testing
Create a global test user
Request:
curl -X POST -H 'Authorization: Bearer $ACCESS_TOKEN' -H "Content-Type: application/json" https://api.mercadolibre.com/users/global_selling_test_user -d
{
"site_id":"CBT"
}
Response:
{
"id":120506781,
"nickname":"TEST0548",
"password":"qatest328",
"site_status":"active"
}
Great! On the response you get the User_id, Nickname, Password and current status of your new test user.
By default, the country of origin for CBT users is US, in the case of wanting to use China as origin, the following request must be sent:
curl -X POST -H 'Authorization: Bearer $ACCESS_TOKEN' -H "Content-Type: application/json" https://api.mercadolibre.com/users/global_selling_test_user -d
{
"site_id": "CBT",
"country_id": "CN"
}
Response:
{
"id":120506782,
"nickname":"TEST0549",
"password":"qatest876",
"site_status":"active"
}
Create a marketplace test user
In addition, you can create marketplace test users, in order to be able to do end-to-end tests, buying and selling between these.
Example:
curl -X POST -H 'Authorization: Bearer $ACCESS_TOKEN' -H "Content-type: application/json" -d
'{
"site_id":"MLM"
}'
https://api.mercadolibre.com/users/test_user
Response:
{
"id": 720984821,
"nickname": "TETE4387547",
"password": "qatest5129",
"site_status": "active",
"email": "test_user_24321325@testuser.com"
}
Considerations
When working with test users, you need to take into account the following considerations:
- Once you have created the test user for a global seller, you have to access global-selling to configure the marketplace account’s.
- You can create up to 10 test users with your Mercado Libre account and these cannot be eliminated by the user, nor by Mercado Libre.
- Test users won’t be active for too long, but once they expire, you can create new ones.
- List under the “Others” category as much as possible.
- Test users can simulate operations only with listings from other test users: they can only buy, sell, ask questions, etc., in test list, created by test accounts.
- Test users showing no activity (buy, ask, publish, etc.) during 60 days are immediately removed.
- Test items are removed regularly.
- The email's validation code for test users will be equal to the last digits of the user ID and can have 4 or 6 digits. For example, for user ID 653764425, the code could be 764425.
Buy and sell between test users
Remember that tests on the platform and all transactions must be done with test users. In addition, personal accounts should not contain ads. If you want to simulate purchases between test users, you could use our test cards. Remember that testing on the platform and all transactions must be done between test users. In addition, personal accounts must not contain listings for this purpose.
Next: Application and permissions.