Skip to content

BillptGetDocuments

Gets tax documents from Bill.pt. Supports filtering by document type, contact, status and date range.

FieldTypeRequiredDescription
credentials_idcredentialsYesBill.pt credential
document_idtextNoSpecific document ID (if empty, lists)
typeselectNoType: FT, FR, ORC, NC or all
contact_idtextNoFilter by contact ID
statustextNoFilter by status
date_fromtextNoDate from (YYYY-MM-DD)
date_totextNoDate to (YYYY-MM-DD)
per_pagenumberNoResults per page (default: 50)
pagenumberNoPage number (default: 1)

This module requires a billpt type credential with the following fields:

  • API Token: Bill.pt API access token
{
"success": true,
"documents": [ ... ],
"total": 45,
"page": 1
}
  • GET /documents/{id} - Individual document
  • GET /documents - List documents
{
"document_id": "789"
}
{
"type": "FT",
"contact_id": "123",
"date_from": "2025-01-01",
"date_to": "2025-01-31"
}
  • If document_id is provided, a single document is returned
  • Available types are: FT (Invoice), FR (Invoice-Receipt), ORC (Quote), NC (Credit Note)
  • Multiple filters can be combined simultaneously