> ## Documentation Index
> Fetch the complete documentation index at: https://docs.finup.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Resume cards



## OpenAPI

````yaml patch /cards/unfreeze
openapi: 3.0.0
info:
  title: FinUp Wallet
  description: API Documentation for Finup
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /cards/unfreeze:
    patch:
      tags:
        - Card
      summary: Resume cards
      operationId: CardController_resumeCard
      parameters:
        - name: x-api-key
          in: header
          description: API key for authentication
          required: true
          schema:
            type: string
      requestBody:
        required: true
        description: Body
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BlockCardDto'
      responses:
        '201':
          description: Cards changed successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: object
                    properties:
                      Changed cards:
                        type: array
                        items:
                          type: string
                          example: 67c48f6fc8614632e0b338fc
                      Unchanged cards due to inappropriate status:
                        type: array
                        items:
                          type: string
                          example: 67c48f6fc8614632e0b558fc
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status_code:
                    type: integer
                    example: 401
                  error_message:
                    type: string
                    example: Unauthorized
components:
  schemas:
    BlockCardDto:
      type: object
      properties:
        card_ids:
          type: array
          items:
            type: string
      required:
        - card_ids

````