Which documentation are you looking for?
Do not know how to start integrating?
Check the first stepsCreate test user
POST
Products that use it:
Request's parameters
BODY
description
Description of the test user being created.string
REQUIRED
site_id
ID of the site where the test user will be created.string
REQUIRED
MPE: Mercado Libre Perú
MLU: Mercado Libre Uruguay
MLA: Mercado Libre Argentina
View moreResponse parameters
id
Unique ID that identifies the test user.integer
nickname
Nickname that identifies the test user.string
password
Test user password.string
site_status
Status of the site where the test user was created.string
Errors
400Bad request
400
Bad-Request
401Not found
401
Not-Found
403Forbidden
403
Forbidden
404Resource not found
404
Resource-Not-Found
500Internal server error
500
Internal-Server-Error
Did you find this information useful?
Yes
Not
Request
curl -X POST \
'https://api.mercadopago.com/users/test'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer TEST-4599*********755-11221*********d497ae962*********ecf8d85-1*********' \
-d '{
"description": "a description",
"site_id": "MLA"
}'
Sample answer
{
"id": 123,
"nickname": "TEST45I5GYIH",
"password": "qatest6730",
"site_status": "active",
"site_id": "MLA",
"description": "a description",
"email": "test_user_123@testuser.com",
"date_created": "2022-02-01T12:00:00.000-04:00",
"date_last_updated": "2022-02-01T12:00:00.000-04:00"
}