Mark order items as delivered
PUT/financing/v1/applications/:applicationId/order/deliver
When some or all order items were delivered to the customer, use /financing/v1/applications/{applicationId}/order/deliver resource where {applicationId} is the application ID you received in the response of /financing/v1/applications after its creation.
📘 For additional examples and more information, please refer to the Technical guide: Manage your orders.
| Financing type | Supported |
|---|---|
DEFERRED_PAYMENT | YES |
PAY_IN_THREE | YES |
| Application state | Availability |
|---|---|
PROCESSING | NO |
REJECTED | NO |
CANCELLED | NO |
READY | YES |
Use /financing/v1/applications/{applicationId}/order/deliver resource with an empty request to mark all order items (the whole order) as delivered at once.
If you want to mark specific order item/s as delivered, use /financing/v1/applications/{applicationId}/order/deliver resource with properly filled request that contains delivered order items info. In this case request should contain array of delivered order items with one or more particular order item identificators (code/EAN/name/type) - code, ean, name and type is used for identifying order item sent in Create application.
💡 TIP: Use an empty request if marking last (those not yet not marked) item(s) on order as delivered.
⚠️ If multiple properties (
code,ean,nameortype) are used for identifying some order item, it all must exact match the item data.
If the request was successfully processed, you receive HTTP status code 200 and object of information about changed order plus basic information about respective application (ID, state, substate).
In other cases, you may receive errors similar to the following ones:
| Status code | Code | Explanation |
|---|---|---|
| 400 | INVALID_REQUEST | Request was not well formatted (malformed request syntax, size too large, etc.) |
| 404 | OBJECT_NOT_FOUND | The requested resource could not be found |
| 422 | TOTAL_PRICE_LIMIT_EXCEEDED | The total price of all subcontracts exceeded the order total price |
| 422 | NOT_SUPPORTED | Resource is not supported for given financing type |
System notification. Some or all order items were delivered to customer. Based on application financing type and partner setting, application payment may be processed.
Request
Responses
- 200
- 422
Order items or whole order is marked as delivered
State change can not be processed