get_waybills
Retrieve waybills from RS.ge within specified date ranges, with optional filtering by buyer tax identification number for targeted document access.
Instructions
Get waybills from RS.ge for a specific date range. Returns all waybills created within the specified dates. Can optionally filter by buyer TIN.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buyer_tin | No | Optional: Filter by buyer TIN (tax identification number) | |
end_date | Yes | End date in YYYY-MM-DD format (e.g., "2025-10-20") | |
start_date | Yes | Start date in YYYY-MM-DD format (e.g., "2025-10-17") |
Input Schema (JSON Schema)
{
"properties": {
"buyer_tin": {
"description": "Optional: Filter by buyer TIN (tax identification number)",
"type": "string"
},
"end_date": {
"description": "End date in YYYY-MM-DD format (e.g., \"2025-10-20\")",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format (e.g., \"2025-10-17\")",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"type": "object"
}