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

Do not know how to start integrating? 

Check the first steps
Update test user password

PUT

https://api.mercadopago.com/test_user/{id}/password
This endpoint handles http requests to change the test user password.
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
PATH
id
string

REQUIRED

Unique ID that identifies the test user.
Response parameters
message
string
Message with the password change status.
new_password
string
New test user password.
Errors

403Forbidden

403

Forbidden

405Method Not Allowed

405

Method-Not-Allowed

500Internal server error

500

Internal-Server-Error

Request
curl -X PUT \
    'https://api.mercadopago.com/test_user/{id}/password?access_token=12123adfasdf123u4u'\
    -H 'Content-Type: application/json' \
       -H 'Authorization: Bearer TEST-2151*********762-03031*********750b665b7*********4dac477-1*********' \
    
Sample answer
{
  "message": "password successfully reset",
  "new_password": "random"
}