> ## 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.

# 전자(세금)계산서 역발행 - 승인 URL 조회

> 역발행을 승인하기 위한 URL을 조회합니다. 생성된 URL은 10분간 유효하며, 공급자의 공동인증서가 등록되어 있어야 합니다.

전체 워크플로우는 [간편 승인 역발행](/docs/api-introduction/usecase-reverse-simple)을 참고하세요.




## OpenAPI

````yaml /openapi.yaml get /v1/taxInvoices/{issuanceKey}/issueRequest/grant
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/grant:
    get:
      tags:
        - 세금계산서 역발행
      summary: 전자(세금)계산서 역발행 - 승인 URL 조회
      description: >
        역발행을 승인하기 위한 URL을 조회합니다. 생성된 URL은 10분간 유효하며, 공급자의 공동인증서가 등록되어 있어야 합니다.


        전체 워크플로우는 [간편 승인 역발행](/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:
                  url:
                    type: string
                required:
                  - url
          headers: {}
        '400':
          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는 비워두세요.

````