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

# Retrieve Tax Invoice by Client Reference

> Retrieves the processing status of a request using `Client-Reference-Id`. For details on Client-Reference-Id, see the [Authentication guide](/en/api-introduction/authentication#client-reference-id).




## OpenAPI

````yaml /openapi.en.yaml get /v1/taxInvoices/issue/status
openapi: 3.1.0
info:
  title: Bolta API
  description: >
    The Bolta e-tax invoice API. [API Overview](/en/api-introduction/overview) |
    [Authentication guide](/en/api-introduction/authentication) | [Use
    cases](/en/api-introduction/usecase-b2b)
  version: 1.0.0
servers:
  - url: https://xapi.bolta.io
    description: Bolta API server
security:
  - basicAuth: []
tags:
  - name: Tax Invoice
    description: >
      Issue and manage e-tax invoices. [Calculating the issuance
      amount](/en/api-introduction/issuance-guide) | [Amendment
      types](/en/api-introduction/amendment-guide)
  - name: Reverse Issuance
    description: >
      Request and manage reverse issuance of e-tax invoices. [Email-approval
      reverse issuance](/en/api-introduction/usecase-reverse-email) |
      [Simple-approval reverse
      issuance](/en/api-introduction/usecase-reverse-simple)
  - name: Cash Receipt
    description: >
      Issue, cancel, and check the status of cash receipts. Issuance and
      cancellation are asynchronous. Check the final result via webhook or the
      status API. [Cash receipt guide](/en/api-introduction/cash-receipt-guide)
      | [Webhook events](/en/api-introduction/webhook-events)
  - name: Supplier
    description: >
      Register and manage the supplier (issuer) that issues tax invoices.
      [Glossary](/en/api-introduction/glossary) | [Delegated
      issuance](/en/api-introduction/usecase-delegated)
  - name: Certificate
    description: >
      Register and manage the supplier's certificate. [Authentication
      guide](/en/api-introduction/authentication)
paths:
  /v1/taxInvoices/issue/status:
    get:
      tags:
        - Tax Invoice
      summary: Retrieve Tax Invoice by Client Reference
      description: >
        Retrieves the processing status of a request using
        `Client-Reference-Id`. For details on Client-Reference-Id, see the
        [Authentication
        guide](/en/api-introduction/authentication#client-reference-id).
      parameters:
        - name: clientReferenceId
          in: query
          description: The Client-Reference-Id used when calling the API
          required: true
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  issuanceKey:
                    type: string
                    description: Issuance identification key
                  clientReferenceId:
                    type: string
                    description: Client reference id
                  message:
                    type: string
                    description: Processing status message
                required:
                  - issuanceKey
                  - clientReferenceId
                  - message
          headers: {}
      deprecated: false
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        Base64-encode your API key and pass it. Enter the API key as the
        username and leave the password empty.

````