Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-15 22:39:23 +05:00
parent 4d0cb6a243
commit ebf28a282b
42 changed files with 1198 additions and 394 deletions

View file

@ -71,9 +71,11 @@ interface TangemPayApi {
@GET("v1/customer/balance")
suspend fun getCardBalance(@Header("Authorization") authHeader: String): ApiResponse<CardBalanceResponse>
@POST("v1/customer/card/details")
/** Card-scoped reveal. `{card_id}` = selected card id. */
@POST("v1/customer/card/{card_id}/details")
suspend fun revealCardDetails(
@Header("Authorization") authHeader: String,
@Path("card_id") cardId: String,
@Body body: CardDetailsRequest,
): ApiResponse<CardDetailsResponse>