List Deliverables
curl --request GET \
--url https://api.fifteenth.com/v1beta/deliverables \
--header 'Authorization: <authorization>'import requests
url = "https://api.fifteenth.com/v1beta/deliverables"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.fifteenth.com/v1beta/deliverables', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fifteenth.com/v1beta/deliverables",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fifteenth.com/v1beta/deliverables"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fifteenth.com/v1beta/deliverables")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fifteenth.com/v1beta/deliverables")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"deliverables": [
{}
],
"total_count": 123,
"has_more": true
}Deliverables
List Deliverables
Retrieve all deliverables across all projects
GET
/
v1beta
/
deliverables
List Deliverables
curl --request GET \
--url https://api.fifteenth.com/v1beta/deliverables \
--header 'Authorization: <authorization>'import requests
url = "https://api.fifteenth.com/v1beta/deliverables"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.fifteenth.com/v1beta/deliverables', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fifteenth.com/v1beta/deliverables",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fifteenth.com/v1beta/deliverables"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fifteenth.com/v1beta/deliverables")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fifteenth.com/v1beta/deliverables")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body{
"deliverables": [
{}
],
"total_count": 123,
"has_more": true
}Overview
The List Deliverables endpoint returns all deliverables across all projects for your organization. Each project has a single deliverable that contains the primary output for that project.Request
Headers
string
required
Bearer token with your Partner API key
Query Parameters
number
Filter deliverables for a specific account.
string
Filter by project type:
tax_return, quarterly_estimate, tax_planning, equity_planning.string
Filter by status:
draft, completed, delivered.integer
Number of deliverables to return (1-100, default 50).
integer
Number of deliverables to skip for pagination.
Response
array
Array of deliverable objects, each representing the single deliverable for a project.
integer
Total number of deliverables matching filters.
boolean
Whether more deliverables are available for pagination.
Examples
import requests
url = "https://api.fifteenth.com/v1beta/deliverables"
headers = {
"Authorization": "Bearer 15th_your_api_key_here"
}
params = {
"limit": 20,
"status": "completed"
}
response = requests.get(url, headers=headers, params=params)
data = response.json()
print(f"Total Deliverables: {data['total_count']}")
print(f"Showing: {len(data['deliverables'])} deliverables")
for deliverable in data['deliverables']:
print(f"\nProject {deliverable['project_id']}: {deliverable['title']}")
print(f" Account: {deliverable['account_id']}")
print(f" Type: {deliverable['project_type']} - Status: {deliverable['status']}")
print(f" View Link: {deliverable['view_link']}")
const url = 'https://api.fifteenth.com/v1beta/deliverables';
const params = new URLSearchParams({
limit: '20',
status: 'completed'
});
const response = await fetch(`${url}?${params}`, {
headers: {
'Authorization': 'Bearer 15th_your_api_key_here'
}
});
const data = await response.json();
console.log(`Total Deliverables: ${data.total_count}`);
console.log(`Showing: ${data.deliverables.length} deliverables`);
data.deliverables.forEach(deliverable => {
console.log(`\nProject ${deliverable.project_id}: ${deliverable.title}`);
console.log(` Account: ${deliverable.account_id}`);
console.log(` Type: ${deliverable.project_type} - Status: ${deliverable.status}`);
console.log(` View Link: ${deliverable.view_link}`);
});
Sample Response
{
"deliverables": [
{
"id": 67890,
"project_id": 12345,
"account_id": 98765,
"document_id": 11111,
"project_type": "tax_return",
"title": "2024 Federal Tax Return (Form 1040)",
"status": "completed",
"view_link": "https://app.fifteenth.com/projects/12345/deliverable/67890/view?token=abc123",
"summary": "Your 2024 federal tax return has been completed with a refund of $2,100.",
"prepared_date": "2024-02-10T10:00:00Z",
"expires_at": "2024-08-10T10:00:00Z"
},
{
"id": 22222,
"project_id": 54321,
"account_id": 33333,
"document_id": 44444,
"project_type": "tax_planning",
"title": "2025 Tax Planning Strategy",
"status": "completed",
"view_link": "https://app.fifteenth.com/projects/54321/deliverable/22222/view?token=def456",
"summary": "Strategic tax planning recommendations for 2025 to minimize tax liability.",
"prepared_date": "2024-02-15T10:00:00Z",
"expires_at": "2024-08-15T10:00:00Z"
}
],
"total_count": 2,
"has_more": false
}
⌘I