1. Documents
The new eTaxGo
Etaxgo V2 Partner API
  • Default module
  • Etaxgo V2 Partner API
  • Authentication
    • Get access token (OAuth 2.0 Client Credentials)
      POST
  • Documents
    • Create tax document
      POST
    • Get document detail and status
      GET
    • Download signed PDF
      GET
    • List / search documents
      POST
  • Schemas
    • TokenRequest
    • TokenResponse
    • BuyerAddress
    • DocumentLineItem
    • CreateDocumentRequest
    • CreateDocumentResponse
    • DocumentSearchRequest
    • DocumentSearchResponse
    • ErrorResponse
  1. Documents

Download signed PDF

GET
/api/v1/core/documents/{id}/pdf
Streams the signed PDF/A-3 file for the document.
Only available when status = Completed.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Path Params

Responses

🟢200
application/pdf
PDF file stream
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/core/documents//pdf' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "success": false,
    "data": null,
    "error": {
        "code": "UNAUTHORIZED",
        "message": "invalid or expired token"
    }
}
Modified at 2026-06-15 12:21:00
Previous
Get document detail and status
Next
List / search documents
Built with