Project Status
curl --request GET \
--url https://api.fifteenth.com/v1beta/projects/{project_id}/status \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.fifteenth.com/v1beta/projects/{project_id}/status"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fifteenth.com/v1beta/projects/{project_id}/status', 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/projects/{project_id}/status",
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: Bearer <token>"
],
]);
$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/projects/{project_id}/status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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/projects/{project_id}/status")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fifteenth.com/v1beta/projects/{project_id}/status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": 123,
"account_id": 123,
"type": "<string>",
"status": "<string>",
"progress_percentage": 123,
"outstanding_items": [
{}
],
"estimated_completion": "<string>"
}Projects
Project Status
Get detailed status and progress information for a tax project
GET
/
v1beta
/
projects
/
{project_id}
/
status
Project Status
curl --request GET \
--url https://api.fifteenth.com/v1beta/projects/{project_id}/status \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.fifteenth.com/v1beta/projects/{project_id}/status"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fifteenth.com/v1beta/projects/{project_id}/status', 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/projects/{project_id}/status",
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: Bearer <token>"
],
]);
$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/projects/{project_id}/status"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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/projects/{project_id}/status")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fifteenth.com/v1beta/projects/{project_id}/status")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": 123,
"account_id": 123,
"type": "<string>",
"status": "<string>",
"progress_percentage": 123,
"outstanding_items": [
{}
],
"estimated_completion": "<string>"
}Overview
The Project Status endpoint provides comprehensive information about a tax project’s current state, progress, outstanding items, and estimated completion timeline.Request
Path Parameters
number
required
Unique project identifier.
Response
number
Project identifier.
number
Associated account ID.
string
Project type:
tax_return, quarterly_estimate, tax_planning, equity_planning.string
Current status:
waiting_on_client, in_progress, in_review, completed.integer
Completion percentage (0-100).
array
Combined list of missing documents and open requests to client.
string
Estimated completion date.
Examples
import requests
project_id = 12345
url = f"https://api.fifteenth.com/v1beta/projects/{project_id}/status"
headers = {
"Authorization": "Bearer 15th_your_api_key_here"
}
response = requests.get(url, headers=headers)
status = response.json()
print(f"Project Status: {status['status']}")
print(f"Progress: {status['progress_percentage']}%")
print(f"Outstanding Items: {len(status['outstanding_items'])}")
for item in status['outstanding_items']:
print(f" - {item['type']}: {item['description']}")
const projectId = 12345;
const url = `https://api.fifteenth.com/v1beta/projects/${projectId}/status`;
const response = await fetch(url, {
headers: {
'Authorization': 'Bearer 15th_your_api_key_here'
}
});
const status = await response.json();
console.log(`Project Status: ${status.status}`);
console.log(`Progress: ${status.progress_percentage}%`);
console.log(`Outstanding Items: ${status.outstanding_items.length}`);
status.outstanding_items.forEach(item => {
console.log(` - ${item.type}: ${item.description}`);
});
Sample Response
{
"id": 12345,
"account_id": 67890,
"type": "tax_return",
"tax_year": 2024,
"status": "waiting_on_client",
"progress_percentage": 35,
"outstanding_items": [
{
"type": "missing_document",
"description": "Interest income statements (1099-INT)",
"priority": "high",
"requested_at": "2024-01-10T10:00:00Z"
},
{
"type": "client_request",
"description": "Please provide updated investment account statements",
"priority": "medium",
"requested_at": "2024-01-12T09:00:00Z"
}
],
"estimated_completion": "2024-02-15T00:00:00Z",
"last_updated": "2024-01-15T10:30:00Z"
}
⌘I