Avalara · Schema

InvoiceResponse

Taxes

Properties

Name Type Description
invoiceId string
accessKey string 44-digit NF-e access key
invoiceNumber integer
series integer
status string
protocolNumber string
issuanceDate string
View JSON Schema on GitHub

JSON Schema

avalara-invoiceresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvoiceResponse",
  "title": "InvoiceResponse",
  "type": "object",
  "properties": {
    "invoiceId": {
      "type": "string"
    },
    "accessKey": {
      "type": "string",
      "description": "44-digit NF-e access key"
    },
    "invoiceNumber": {
      "type": "integer"
    },
    "series": {
      "type": "integer"
    },
    "status": {
      "type": "string",
      "enum": [
        "Authorized",
        "Cancelled",
        "Denied",
        "Pending"
      ]
    },
    "protocolNumber": {
      "type": "string"
    },
    "issuanceDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}