Updated on 2026-08-14
This commit is contained in:
parent
4fc52e2052
commit
017eece8b7
18 changed files with 938 additions and 14 deletions
|
|
@ -95,6 +95,12 @@ interface TangemPayApi {
|
|||
@Body body: VirtualAccountOrderRequest,
|
||||
): ApiResponse<OrderResponse>
|
||||
|
||||
@POST("v1/order/{order_id}/cancel")
|
||||
suspend fun cancelOrder(
|
||||
@Header("Authorization") authHeader: String,
|
||||
@Path("order_id") orderId: String,
|
||||
): ApiResponse<Any>
|
||||
|
||||
/** Customer offers — used to gate the issue-additional-card flow. */
|
||||
@GET("v1/customer/offers")
|
||||
suspend fun getCustomerOffers(@Header("Authorization") authHeader: String): ApiResponse<CustomerOffersResponse>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue