Crear orden/instore/qr/seller/collectors/{user_id}/stores/{external_store_id}/pos/{external_pos_id}/ordersGenera una orden de pago asociada a la caja que quieras con toda la información de pago de tu producto o servicio.
PUT
Productos que lo utilizan:
Parámetros para la solicitud
user_idstring
Localización: pathEncuentre la identificación de usuario en su panel de desarrollador en nuestro sitio para desarrolladoresREQUERIDO
external_store_idstring
Localización: pathCustom Store ID associated to the order.REQUERIDO
external_pos_idstring
Localización: pathCustom POS ID associated to the order.REQUERIDO
cash_out
Localización: bodyCash withdrawal (Commercial contact required)object
Parámetros de respuesta
Solicitud
curl
curl -X PUT \
'https://api.mercadopago.com/instore/qr/seller/collectors/{user_id}/stores/{external_store_id}/pos/{external_pos_id}/orders' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"external_reference": 12345,
"title": "Product order",
"notification_url": "www.yourserver.com",
"total_amount": 100,
"items": [
{
"sku_number": "A123K9191938",
"category": "marketplace",
"title": "Point Mini",
"description": "This is the Point Mini",
"unit_price": 100,
"quantity": 1,
"unit_measure": "unit",
"total_amount": 100
}
],
"taxes": [
{
"value": 19,
"type": "IVA"
}
],
"sponsor": {
"id": 446566691
},
"cash_out": {}
}'
Respuesta
json
{}
Errores
400bad_request
invalid_collectorId
invalid_externalPosIdexternalPosId must be present.
invalid_external_referenceexternal_reference must be present.
invalid_total_amounttotal_amount must be present.
invalid_items.sku_numberitems.sku_number must be string.
invalid_items.categoryitems.category must be string.
invalid_items.titleitems.title must be string.
invalid_items.descriptionitems.description must be string.
invalid_items.unit_measureitems.unit_measure must be string.
invalid_items.quantityitems.quantity must be number.
invalid_items.currency_iditems.currency_id must be string.
invalid_items.unit_priceitems.unit_price must be number.
invalid_items.total_amountitems.total_amount must be number.
invalid_titletitle must be string.
invalid_unit_measureunit_measure must be present.
invalid_quantityquantity must be present.
invalid_unit_priceunit_price must be present.
invalid_descriptiondescription must be present.
invalid_sponsor.idsponsor.id must be number.
invalid_idsponsor.id must be present.
invalid_cash_out.amountcash_out.amount must be number.
invalid_amountcash_out.amount must be present.
error_creating_seller_qr_orderThe cash out is required when order has no items.
invalid_expiration_dateExpiration date must be a valid and future date.
500bad_request
in_store_order_creation_errorFailed to create order.