Búsqueda inteligente powered by OpenAIÂ
Iniciar vinculación
POST
Productos que lo utilizan:
Parámetros para la solicitud
QUERY
client.id
ID único que identifica un cliente especÃfico.number
HEADER
x-platform-id
Campo destinado a plataformas o módulos que ofrecen Mercado Pago en sus soluciones.string
BODY
return_uri
Es el URL que redirige al usuario de regreso al sitio del vendedor.string
external_flow_id
Identifica el estado del flujo por el lado del vendedor.string
external_user
El external_user contiene los datos que el vendedor necesitará para identificar un usuario a fin de que este pueda continuar con su propio flujo.object
agreement_data
Contiene información sobre las acciones que el usuario debe realizar y el monto a pagar.object
Parámetros de respuesta
agreement_id
ID único que identifica una vinculación.string
agreement_uri
This is the uri to redirect the user to the wallet linking in the frontend.string
Errores
400Error
400
Bad-Request
Solicitud
curl -X POST \
'https://api.mercadopago.com/v2/wallet_connect/agreements?client.id=<CLIENT.ID>'\
-H 'Content-Type: application/json' \
-H 'x-platform-id: YOUR_PLATFORM_ID' \
-H 'Authorization: Bearer TEST-7719*********832-03141*********ec9309854*********f1e54b5-1*********' \
-d '{
"return_uri": "https://www.mercadopago.com/",
"external_flow_id": "EXTERNAL_FLOW_ID",
"external_user": {
"id": "usertest",
"description": "Test account"
},
"agreement_data": {
"validation_amount": 3.14,
"description": "Test agreement"
}
}'
Respuesta de ejemplo
{
"agreement_id": "22abcd1235ed497f945f755fcaba3c6c",
"agreement_uri": "https://wwww.mercadopago.com.ar/v1/wallet_agreement/22abcd1235ed497f945f755fcaba3c6c"
}