# Создание заказ Доплаты

## Перевод заказа в статус готов к доставке или создание заказ-доплаты

> Перевод заказа в статус готов к доставке или создание заказ-доплаты

```json
{"openapi":"3.0.0","info":{"title":"Merchant-api Service (API)","version":"1.0"},"security":[{"apiKeyAuth":[]}],"components":{"securitySchemes":{"apiKeyAuth":{"type":"apiKey","description":"Authorization token","name":"Authorization","in":"header"}},"parameters":{"order_id":{"name":"order_id","in":"path","description":"Идентификатор заказа","required":true,"schema":{"type":"integer"}}},"schemas":{"OrderCreateSurchargeRequest":{"required":["products"],"properties":{"products":{"type":"array","items":{"properties":{"product_id":{"title":"Идентификатор товара","type":"integer"},"amount":{"title":"Количество товара","type":"integer"},"price":{"title":"Цена","type":"number"}},"type":"object"}}},"type":"object"}}},"paths":{"/gw/merchant-api-v2/v1/orders/create-surcharge/{order_id}":{"put":{"tags":["Создание заказ-доплаты"],"summary":"Перевод заказа в статус готов к доставке или создание заказ-доплаты","description":"Перевод заказа в статус готов к доставке или создание заказ-доплаты","operationId":"orderSurcharge","parameters":[{"$ref":"#/components/parameters/order_id"}],"requestBody":{"description":"","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrderCreateSurchargeRequest"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"properties":{"success":{"type":"boolean"},"data":{"properties":{"success":{"type":"boolean"}},"type":"object"}},"type":"object"}}}}}}}}}
```
