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

# 전자(세금)계산서 역발행 - 요청 취소

> 역발행 요청을 취소합니다. 이미 승인/취소/발행된 경우에는 에러가 반환됩니다.

자세한 내용은 [이메일 승인 역발행](/docs/api-introduction/usecase-reverse-email) | [간편 승인 역발행](/docs/api-introduction/usecase-reverse-simple)을 참고하세요.




## OpenAPI

````yaml /openapi.yaml put /v1/taxInvoices/{issuanceKey}/issueRequest/cancel
openapi: 3.1.0
info:
  title: 볼타 API
  description: >
    볼타 전자세금계산서 API입니다. [API 소개](/docs/api-introduction/overview) | [인증
    가이드](/docs/api-introduction/authentication) | [사용
    사례](/docs/api-introduction/usecase-b2b)
  version: 1.0.0
servers:
  - url: https://xapi.bolta.io
    description: 볼타 API 서버
security:
  - basicAuth: []
tags:
  - name: 세금계산서
    description: >
      전자(세금)계산서 발행 및 관리. [발행 금액 계산](/docs/api-introduction/issuance-guide) |
      [수정발행 유형](/docs/api-introduction/amendment-guide)
  - name: 세금계산서 역발행
    description: >
      전자(세금)계산서 역발행 요청 및 관리. [이메일 승인
      역발행](/docs/api-introduction/usecase-reverse-email) | [간편 승인
      역발행](/docs/api-introduction/usecase-reverse-simple)
  - name: 공급자
    description: >
      세금계산서를 발행하는 공급자(발행자)를 등록·관리합니다. [용어 정리](/docs/api-introduction/glossary) |
      [대리 정발행](/docs/api-introduction/usecase-delegated)
  - name: 인증서
    description: |
      공급자 공동인증서 등록 및 관리. [인증 가이드](/docs/api-introduction/authentication)
paths:
  /v1/taxInvoices/{issuanceKey}/issueRequest/cancel:
    put:
      tags:
        - 세금계산서 역발행
      summary: 전자(세금)계산서 역발행 - 요청 취소
      description: >
        역발행 요청을 취소합니다. 이미 승인/취소/발행된 경우에는 에러가 반환됩니다.


        자세한 내용은 [이메일 승인 역발행](/docs/api-introduction/usecase-reverse-email) | [간편
        승인 역발행](/docs/api-introduction/usecase-reverse-simple)을 참고하세요.
      parameters:
        - name: issuanceKey
          in: path
          description: 발행 요청 식별번호
          required: true
          schema:
            type: string
        - name: Supplier-Key
          in: header
          description: >-
            공급자(발행자) 식별 키입니다. 공급받는자(거래처)가 아니라 발행 주체 본인의 키입니다. 공급자 등록 API(POST
            /v1/suppliers)로 발급받은 supplierKey를 사용하며, 공급받는자 정보는 요청 본문의 supplied
            필드에 넣습니다. API 키 단위로 독립 관리됩니다. [용어
            정리](/docs/api-introduction/glossary) | [인증
            가이드](/docs/api-introduction/authentication)
          required: true
          example: SupplierKey_bf8paz
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  issuanceKey:
                    type: string
                    description: 처리가 완료된 IssuanceKey가 응답됩니다.
                required:
                  - issuanceKey
          headers: {}
        '400':
          description: 잘못된 요청
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: 서버 내부 오류
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      deprecated: false
components:
  schemas:
    ErrorResponse:
      type: object
      description: API 요청 실패 시 반환되는 에러 응답
      properties:
        code:
          type: string
          description: 에러 타입 식별자
        message:
          type: string
          description: 에러 설명
      required:
        - code
        - message
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: API 키를 Base64 인코딩하여 전달합니다. Username에 API 키를 입력하고 Password는 비워두세요.

````