Search test user - Test user - Mercado Pago Developers
Which documentation are you looking for?

Do not know how to start integrating? 

Check the first steps
Search test user

GET

https://api.mercadopago.com/test_user/search
This endpoint handles http requests to search a test user.
Request's parameters
QUERY
access_token
string

REQUIRED

Test access token generated from the seller by the authentication process (OAuth). Security code that identifies the user, their privileges and an application used in different requests from public sources to access protected resources. Its validity is determined by the expires_in parameter and is similar to APP_USR-1585551492-030918-25######3458-2880736, which is composed of
Access token type: APP_USR (application on behalf of a user), TEST (test, only valid in sandbox)
Client ID: 1585551492
Creation date (MMddHH): 030918
View more
Response parameters
total
integer
Total test users found.
results
array
Localized test user information.
Errors

401Not found

401

Not-Found

403Forbidden

403

Forbidden

404Resource not found

404

Resource-Not-Found

405Method Not Allowed

405

Method-Not-Allowed

500Internal Server Error

500

Internal-Server-Error

Request
curl -X GET \
    'https://api.mercadopago.com/test_user/search?access_token=12123adfasdf123u4u'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-7434*********159-03141*********cee51edf8*********f94f589-1*********' \
    
Sample answer
{
  "total": 1,
  "results": [
    {
      "id": 123,
      "nickname": "TEST45I5GYIH",
      "site_status": "active",
      "site_id": "MLA",
      "email": "test_user_123@testuser.com",
      "date_created": "2021-11-04T12:02:35Z",
      "date_last_updated": "2021-11-04T12:02:35Z"
    }
  ]
}