Create test user - Test user - Mercado Pago Developers
Create test user

POST

/users/test
This endpoint handles http requests to create a test user.
Request's parameters
description

REQUIRED

string
Localization: bodyDescription of the test user being created.
site_id

REQUIRED

string
Localization: bodyID of the site where the test user will be created.
MPE: Mercado Libre Perú
MLU: Mercado Libre Uruguay
MLA: Mercado Libre Argentina
MLC: Mercado Libre Chile
MCO: Mercado Libre Colombia
MLB: Mercado Libre Brasil
MLM: Mercado Libre México
Response parameters
id
integer
Localization: bodyUnique ID that identifies the test user.
nickname
string
Localization: bodyNickname that identifies the test user.
password
string
Localization: bodyTest user password.
site_status
string
Localization: bodyStatus of the site where the test user was created.
Request
curl
curl -X POST \
      'https://api.mercadopago.com/users/test' \
      -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
      -H 'Content-Type: application/json' \ 
      -d '{
  "site_id": "MLA",
  "description": "a description"
}'
Answer
json
{
  "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"
}
Errors
400bad_request
400invalid-site_id
401bad_request
401invalid-token
403bad_request
403authorization-the-caller-id-must-be-a-productive-user
404bad_request
404Resource-Not-Found
500bad_request
500Internal-Server-Error