# MD for: https://www.mercadopago.com.pe/developers/es/docs/checkout-api-payments/additional-content/industry-data/home-and-deco.md \# Home & deco These are the specific data for the \*\*home & deco\*\* industry that you can add to your integration to improve payment approval. ## Fields to send Add any additional information that you consider necessary. ### About items | Array \`items\` | Type | Description | | --- | --- | --- | | \`id\` | String | Item identification code. | | \`title\` | String | Item name. | | \`description\` | String | Item description. | | \`category\_id\` | String | Item category. | | \`quantity\` | Integer | Quantity of units for the item. | | \`unit\_price\` | Float | Unit price assigned to the item. It can be an integer or a decimal. | | \`warranty\` | Boolean | If the product has a guarantee, use \`true\`. I it does not, use \`false\`. | ### About the buyer | Object \`payer\` | Type | Description | | --- | --- | --- | | \`first\_name\` | String | Buyer's first name. | | \`last\_name\` | String | Buyer's last name. | | \`identification\` | Object | Buyer's identification data. | | \`type\` | String | Type of identification. It is found within the \`identification\` object. | | \`number\` | String | Identification number. It is found within the \`identification\` object. | | \`phone\` | Object | Buyer's phone number. | | \`area\_code\` | Integer | Buyer's area code. It is found within the \`phone\` object. | | \`number\` | Integer | Buyer's phone number. It is found within the \`phone\` object. | | \`address\` | Object | Buyer's address data. | | \`zip\_code\` | String | Buyer's postal code. It is found within the \`address\` object. | | \`street\_name\` | String | Street name of the buyer's address. It is found within the \`address\` object. | | \`street\_number\` | Integer | Street number of the buyer's address. It is found within the \`address\` object. | | \`authentication\_type\` | Enum | Type of authentication. It can be "MOBILE" or "WEB". | | \`registration\_date\` | Date | Buyer's registration date on the site. | | \`is\_prime\_user\` | Boolean | Indicates if the user is premium. Put \`true\` if they are or \`false\` if they are not. | | \`is\_first\_purchase\_online\` | Boolean | Indicates if this is the customer's first purchase. Put \`true\` if they are or \`false\` if they are not. | | \`last\_purchase\` | Date | Date of the last purchase on the site. | #### About shipments | Object \`shipment\` | Type | Description | | --- | --- | --- | | \`receiver\_address\` | Object | Shipping address data. | | \`zip\_code\` | String | Postal code for the shipment. | | \`state\_name\` | String | Province to which the order is shipped. | | \`city\_name\` | String | City to which the order is shipped. | | \`street\_number\` | Integer | Street number of the shipment. | | \`express\_shipment\` | Boolean | Indicates if the shipment is express. \`true\` if it is, \`false\` if it is not. | \`\`\`curl curl --location 'https://api.mercadopago.com/v1/payments' \\ --header 'Content-Type: application/json' \\ --header 'X-Idempotency-Key: {{uuid}}' \\ --header 'Authorization: Bearer ACCESS\_TOKEN' \\ --header 'X-Meli-Session-Id: {{device\_id}} \\ --data-raw '{ "transaction\_amount": 150.00, "installments": 1, "statement\_descriptor": "LOJA 123", "capture": true, "binary\_mode": false, "sponsor\_id": null, "application\_fee": null, "payment\_method\_id": "debvisa", "token": "{{card\_token\_id}}", "external\_reference": "Pedido01", "description": "PEDIDO NOVO", "notification\_url": "{{notification\_url}}", "metadata": { "order\_number": "order\_01" }, "payer": { "email": "test@testuser.com", "identification": { "type": "CPF", "number": "12345678909" } }, "additional\_info": { "items": \[ { "id": "1234", "title": "Serviço", "warranty": true, "description": "Descrição de serviço", "category\_id": "kitchen", "quantity": 1, "unit\_price": 150 } \], "payer": { "first\_name": "Nome", "last\_name": "Sobrenome", "is\_prime\_user": true, "is\_first\_purchase\_online": true, "last\_purchase": "2019-10-25T19:30:00.000-03:00", "phone": { "area\_code": "11", "number": "987654321" }, "address": { "zip\_code": "206233-2002", "street\_name": "Av. das Nações Unidas", "street\_number": "3003" }, "authentication\_type": "MOBILE", "registration\_date": "2020-08-06T09:25:04.000-03:00" }, "shipments": { "express\_shipment": "1", "receiver\_address": { "zip\_code": "306233-2003", "street\_name": "Av. das Nações Unidas", "street\_number": "3003", "floor": "5", "apartment": "502", "state\_name":"SP", "city\_name":"Osasco" } } } }' \`\`\`