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

# List reissue reasons

Returns a paginated list of reissue reasons for the tenant.

Supports filtering by enabled status and cursor-based pagination.


# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Card issuing - Cards",
    "version": "1.4.6",
    "description": "Card endpoints API",
    "contact": {
      "name": "API Support",
      "url": "https://developers.pismo.io/support/"
    },
    "license": {
      "name": "Copyright Pismo"
    }
  },
  "servers": [
    {
      "url": "https://sandbox.pismolabs.io",
      "description": "Sandbox API server for testing."
    },
    {
      "url": "https://gw-pci.pismolabs.io",
      "description": "Sandbox PCI API server for testing."
    }
  ],
  "security": [
    {
      "BearerAuth": []
    }
  ],
  "tags": [
    {
      "name": "Card reissue",
      "description": "Card reissue endpoints"
    }
  ],
  "components": {
    "parameters": {
      "enabledQuery": {
        "in": "query",
        "name": "enabled",
        "description": "Enabled status filter",
        "schema": {
          "type": "boolean"
        },
        "required": false,
        "example": true
      },
      "limitQuery": {
        "in": "query",
        "name": "limit",
        "description": "Maximum number of items to return per page",
        "schema": {
          "type": "integer",
          "minimum": 1,
          "maximum": 50,
          "default": 10
        },
        "required": false,
        "example": 10
      },
      "nextCursorQuery": {
        "in": "query",
        "name": "nextCursor",
        "description": "Pagination cursor",
        "schema": {
          "type": "integer",
          "minimum": 0
        },
        "required": false,
        "example": 124
      }
    },
    "schemas": {
      "GetReasonsResponse": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ReasonResponse"
            }
          },
          "pagination": {
            "$ref": "#/components/schemas/Pagination"
          }
        }
      },
      "MustBlock": {
        "type": "boolean",
        "description": "Should a `PLASTIC` card be canceled upon reissue or can it be used until the new card is activated?\n\n `VIRTUAL` cards are automatically canceled when reissued, regardless of this setting.\n",
        "example": true
      },
      "MustCharge": {
        "type": "boolean",
        "description": "Should the reissue be charged?\n\n This field is information only as only issuers can make debit entries to a customer's account.\n",
        "example": true
      },
      "Pagination": {
        "type": "object",
        "properties": {
          "next_cursor": {
            "type": "integer",
            "nullable": true,
            "description": "Cursor to get the next page",
            "example": 124
          },
          "has_next": {
            "type": "boolean",
            "description": "Are more pages available?",
            "example": true
          }
        }
      },
      "ReissueCost": {
        "type": "number",
        "description": "Reissue card cost",
        "example": 20.5
      },
      "ReissueDescription": {
        "type": "string",
        "minLength": 1,
        "maxLength": 255,
        "description": "Reissue reason description",
        "example": "Card was lost by the customer"
      },
      "ReissueEnabled": {
        "type": "boolean",
        "description": "Is reason active?\n\n This field is for information only and allows the issuer to provide only active reasons for re-issuance.\n",
        "example": true
      },
      "ReasonId": {
        "type": "integer",
        "description": "Reissue reason identifier. You can get reason IDs using the [List reissue reasons](https://developers.pismo.io/pismo-docs/reference/get-reissue-reasons) endpoint. The `must_block` flag comes from the reissue reason object. \n",
        "example": 123
      },
      "ReasonResponse": {
        "type": "object",
        "properties": {
          "id": {
            "$ref": "#/components/schemas/ReasonId"
          },
          "description": {
            "$ref": "#/components/schemas/ReissueDescription"
          },
          "must_block": {
            "$ref": "#/components/schemas/MustBlock"
          },
          "must_charge": {
            "$ref": "#/components/schemas/MustCharge"
          },
          "cost": {
            "$ref": "#/components/schemas/ReissueCost"
          },
          "type": {
            "$ref": "#/components/schemas/ReissueType"
          },
          "enabled": {
            "$ref": "#/components/schemas/ReissueEnabled"
          }
        }
      },
      "ReissueType": {
        "type": "string",
        "description": "Issuer-defined reissue reason enum"
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "description": "Account token - an access token encoded with a Pismo account ID. Tokens can expire quickly, which can result in an \"Unauthorized\" error.",
        "bearerFormat": "JWT"
      }
    },
    "responses": {
      "400BadRequest": {
        "description": "Bad Request"
      },
      "401Unauthorized": {
        "description": "Access token is missing or invalid"
      },
      "500InternalServer": {
        "description": "Internal server error"
      }
    }
  },
  "paths": {
    "/cards/v1/reissue/reasons": {
      "get": {
        "summary": "List reissue reasons",
        "description": "Returns a paginated list of reissue reasons for the tenant.\n\nSupports filtering by enabled status and cursor-based pagination.\n",
        "operationId": "get-reissue-reasons",
        "tags": [
          "Card reissue"
        ],
        "parameters": [
          {
            "$ref": "#/components/parameters/limitQuery"
          },
          {
            "$ref": "#/components/parameters/nextCursorQuery"
          },
          {
            "$ref": "#/components/parameters/enabledQuery"
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GetReasonsResponse"
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/400BadRequest"
          },
          "401": {
            "$ref": "#/components/responses/401Unauthorized"
          },
          "500": {
            "$ref": "#/components/responses/500InternalServer"
          }
        }
      }
    }
  }
}
```