Usage Scenario

The client pays for the order on the restaurant website, which has integration with the payment system:

  1. An order is created on the restaurant website using the Delivery API. In the response to the creation request, r_k Delivery returns the order number
  2. If the automatic order acceptance and confirmation functions are activated, then within the time specified in the corporation settings, the status of the new order will change to Transferred to the kitchen. After that, the order will be sent to the cash station.
    If the functions of automatic order acceptance and confirmation are not activated, then the order is first processed by the r_k Delivery call center operator or delivery manager, and only then is transferred to the cash station
  3. Using the API method, an order payment request is sent simultaneously to r_keeper and r_k Delivery
  4. After successful payment, the order can be closed using the API method — the order will be closed in both r_keeper and r_k Delivery.

API Methods

Order Payment

Request

Error rendering macro 'code': Invalid value specified for parameter 'com.atlassian.confluence.ext.code.render.InvalidValueException'
PUT /orders/api/v1/orders/{orderId}/pay

Request example

Error rendering macro 'code': Invalid value specified for parameter 'com.atlassian.confluence.ext.code.render.InvalidValueException'
PUT https://delivery.ucs.ru/orders/api/v1/orders/102/pay

Body:

Error rendering macro 'code': Invalid value specified for parameter 'com.atlassian.confluence.ext.code.render.InvalidValueException'
[
   {
      "code":"16D72549-14D8-4F31-9E2A-0A833D4F5EED",
      "amount":978,
      "paidAt":"2022-04-05T15:12:58.658+03:00",
      "name":""
   }
]

The code parameter — the GUID of r_keeper currency which will be used for paying the order created with the use of API.

Response examples

The response contains the payment settings error:

Error rendering macro 'code': Invalid value specified for parameter 'com.atlassian.confluence.ext.code.render.InvalidValueException'
{
    "code": "ERR_EXTERNAL_ERROR_WS",
    "msg": "WS error: Error code: WsaOrderError. RkInternal: Cash station [3373] There is not enough money to fully pay the order.",
    "requestId": "0HMGNRL7KKKDF:00000001",
    "errors": null
}

Successful payment:

Error rendering macro 'code': Invalid value specified for parameter 'com.atlassian.confluence.ext.code.render.InvalidValueException'
{
    "result": {}
}

Order Closure

Request

Error rendering macro 'code': Invalid value specified for parameter 'com.atlassian.confluence.ext.code.render.InvalidValueException'
PUT /orders/api/v1/orders/{orderId}/complete

Request Example:

Error rendering macro 'code': Invalid value specified for parameter 'com.atlassian.confluence.ext.code.render.InvalidValueException'
PUT https://delivery.ucs.ru/orders/api/v1/orders/107/complete

Response Examples:

The attempt to close the unpaid order:

Status code: 500

Error rendering macro 'code': Invalid value specified for parameter 'com.atlassian.confluence.ext.code.render.InvalidValueException'
{
	"code": "rk7_close_order",
	"msg": "RkInternal: Cash station [3071] Cannot save order 1.73, it is not fully paid",
	"requestId": "f3e391f697a9e2a72fe67c6ba69db771",
	"errors": null
}

Successful order closure:

Status code: 200 OK

{
	"result": {}
}
  • No labels