Create orderhttps://api.mercadopago.com/mpmobile/instore/qr/{user_id}/{external_id}
Generate a payment order with all the payment information for your product or service and associate it with the Point of Sale you want.
POST
Request parameters
Header
Authorization
Access Token obtained through the developer panel. Must be sent in all requests.string
REQUIRED
X-Ttl-Store-Preference
X-Ttl-Store-Preferencestring
REQUIRED
Path
user_id
User Idstring
REQUIRED
external_id
External Idstring
REQUIRED
Body
external_reference
Reference you can synchronize with your sale system.string
notification_url
URL where you'd like to receive a payment or merchant_order notification.string
sponsor_id
Mercado Pago's USER_ID of the integrator system.string
items
Information on the products involved in the order.array
Response parameters
id
idstring
items
itemsarray
collector_id
collector_idnumber
collector
collectorobject
Errors
400Error
invalid_collector_id
collector_id invalid.
invalid_sponsor_id
sponsor_id is not an active user.
invalid_items
unit_price invalid.
invalid_access_token
Access denied.
Request
curl -X POST \
'https://api.mercadopago.com/mpmobile/instore/qr/{user_id}/{external_id}'\
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer APP_USR-8*********932064-12*********edf6d3c99*********2236c703f*********668' \
-H 'X-Ttl-Store-Preference: 180' \
-d '{
"external_reference": "Factura-0001",
"notification_url": "http://www.yourserver.com",
"sponsor_id": "446566691",
"items": [
{
"id": 78123172,
"title": "Shampoo",
"currency_id": "COP",
"unit_price": 120,
"quantity": 1,
"description": "Almendras",
"picture_url": "https://bit.ly/2nxdWHa"
}
]
}'Response
{
"id": "360472057-3d2cadbf-2c54-485c-bcb9-f262adc14af6",
"items": [
{
"title": "Shampoo",
"id": 78123172,
"currency_id": "COP",
"unit_price": 120,
"quantity": 1,
"description": "Almendras",
"picture_url": "https://bit.ly/2nxdWHa"
}
],
"collector_id": 360472057,
"collector": {},
"total_amount": 120,
"amount": 120,
"external_reference": "Factura-0001",
"operation_type": "regular_payment",
"payment_methods": {
"excluded_payment_methods": [
{}
],
"excluded_payment_types": [
{
"id": "ticket"
}
]
},
"marketplace": "NONE",
"marketplace_fee": 0,
"sponsor_id": 446566691,
"notification_url": "http://www.yourserver.com",
"back_urls": {},
"payer": {
"id": 0,
"email": "test_user_cl@testuser.com",
"identification": {},
"address": {},
"phone": {}
},
"site_id": "mla",
"client_id": 360472057,
"processing_modes": [
{}
],
"internal_metadata": {}
}