v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Cards

Increase password try count

Increase a card's password tries counter by 1.

If the counter reaches the maximum number of tries configured in the program parameter for this and block_card_exceeds_counter is true, the card is blocked. When this happens:

  • The status is changed to BLOCKED
  • A Card updated event is generated.

If the card's status is CREATED, the counter is increased, but the status does not change.

For more information, refer to the Card lifecycle and statuses guide.

Note: This endpoint takes an account token - an access token encoded with a Pismo account ID.

post/wallet/v2/cards/{cardId}/password-tries/increase

Path parameters

cardIdstring required

Pismo card ID

Request body

block_card_exceeds_counterboolean required

Block card if it exceeds counter

Example request

{
  "block_card_exceeds_counter": true
}

Response

Card password tries increased

successstring

Message indicating success

Example response

{
  "success": "Incremented password tries counter"
}