GET api/Tree/{id}
Get a Tree Permit details by tracking number
Request Information
URI Parameters
Name | Description | Type |
---|---|---|
id | integer |
Body Parameters
None.
Response Information
Resource Description
TreeViewModelName | Description | Type |
---|---|---|
TrackingNumber |
Tracking Number of the permit |
decimal number |
PermitNumber |
Permit Number of the permit |
string |
ApplicationDate |
Date on which Permit Application was Applied |
date |
TreeFundSOARNum |
Tree Fund SOAR Number |
string |
TreeFundPaidYN |
Has Tree Fund Paid |
string |
TreeFundAmount |
Tree Fund Amount Collected |
decimal number |
CircumferenceRemoved |
Circumference of the Tree Removed |
decimal number |
TotalCount |
Number of Trees Removed |
integer |
OwnerFullName |
Owner's Full Name |
string |
TreeLocation |
Location of the Tree |
string |
Latitude |
Permit Location - Latitude |
decimal number |
Longitude |
Permit Location - Longitude |
decimal number |
ward |
Ward in which Tree(s) are located |
string |
IssueDate |
Date on which Permit was Issued |
date |
Status |
Permit Status |
string |
ApplicantName |
Name of the person applied the permit |
string |
AssignedUFAArboristFullname |
Name of the Assigned UFA Arborist |
string |
ISAArboristFullname |
Name of the Assigned ISA Arborist |
string |
LastUpdateDate |
Last Update Date |
date |
Response Formats
application/json, text/json
Sample:
{ "TrackingNumber": 1.0, "PermitNumber": "sample string 2", "ApplicationDate": "2024-12-28T11:32:11.7130651-05:00", "TreeFundSOARNum": "sample string 3", "TreeFundPaidYN": "sample string 4", "TreeFundAmount": 1.0, "CircumferenceRemoved": 1.0, "TotalCount": 1, "OwnerFullName": "sample string 5", "TreeLocation": "sample string 6", "Latitude": 1.1, "Longitude": 1.1, "ward": "sample string 7", "IssueDate": "2024-12-28T11:32:11.7130651-05:00", "Status": "sample string 8", "ApplicantName": "sample string 9", "AssignedUFAArboristFullname": "sample string 10", "ISAArboristFullname": "sample string 11", "LastUpdateDate": "2024-12-28T11:32:11.7130651-05:00" }
application/xml, text/xml
Sample:
<TreeViewModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TrackingNumber>1</TrackingNumber> <PermitNumber>sample string 2</PermitNumber> <ApplicationDate>2024-12-28T11:32:11.7130651-05:00</ApplicationDate> <TreeFundSOARNum>sample string 3</TreeFundSOARNum> <TreeFundPaidYN>sample string 4</TreeFundPaidYN> <TreeFundAmount>1</TreeFundAmount> <CircumferenceRemoved>1</CircumferenceRemoved> <TotalCount>1</TotalCount> <OwnerFullName>sample string 5</OwnerFullName> <TreeLocation>sample string 6</TreeLocation> <Latitude>1.1</Latitude> <Longitude>1.1</Longitude> <ward>sample string 7</ward> <IssueDate>2024-12-28T11:32:11.7130651-05:00</IssueDate> <Status>sample string 8</Status> <ApplicantName>sample string 9</ApplicantName> <AssignedUFAArboristFullname>sample string 10</AssignedUFAArboristFullname> <ISAArboristFullname>sample string 11</ISAArboristFullname> <LastUpdateDate>2024-12-28T11:32:11.7130651-05:00</LastUpdateDate> </TreeViewModel>