Updated on 2026-08-14

This commit is contained in:
Tangem 2026-07-07 08:50:52 -07:00
parent 4fc52e2052
commit 017eece8b7
18 changed files with 938 additions and 14 deletions

View file

@ -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>