Updated on 2026-08-14
This commit is contained in:
parent
4d0cb6a243
commit
ebf28a282b
42 changed files with 1198 additions and 394 deletions
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue