Skip to content

Drawings

Returns drawing of your organization by project drawing id,

GET https://api.arcsite.com/v1/drawings/<id>

Terminal window
curl "https://api.arcsite.com/v1/drawings/<ID>" \
-H "Authorization: Bearer your_api_token_here"
Response
{
"id": "36029621652695015",
"project_id": "28123123123",
"name": "Drawing_1_Pre-Survey_Proposal (1)-page_03_test-page_02",
"pdf_url": "https://d1umxpetlubu85.cloudfront.net/36029346774787878/36029621652694930/40c01b5a-75d5-11ec-8ea1-0242ac170007/Drawing_1_Pre-Survey_Proposal_-281-29-page_03_test-page_02.pdf?Expires=1642318765&Signature=Lh9XnGwEtt5DdZx4GAdp7J5qbJArHKS~lY39y2OjDsSRzpXPuv6H4x0RxfqYGi6gqrZxv56GMn2MiQXN9cM2VotAMpGWBsjm4cabdpLSXZNuhtqJ4k9~VBr3EyhgGIlIQk2HUlb-~McPlfbGNrbGbzj3P5mpEZ0Ce00OG0WUs3eolPEom9s4v7QNwWRrsyltFvEhZ~T4S8tRDCjyHa50al6GsNCLb5sBX7pW~oem2~GKGYj3a-kDuzCQiKLp4K7Ncc2njmDwVHThI9aSIlggbuejBa~XbWUf2WNgcbUq0~i0-e~yVN212~Qh7vHcXV4XFXQ-7k3zdxfLE8m9il5Ufg__&Key-Pair-Id=APKAIZL6W5TJO2AK7DOQ",
"png_url": "https://d1umxpetlubu85.cloudfront.net/36029346774787878/36029621652694930/40c01b5a-75d5-11ec-8ea1-0242ac170007/Drawing_1_Pre-Survey_Proposal_-281-29-page_03_test-page_02.png",
"dxf_url": "https://cdn-files-1-test.arcsite.com/36029346774973628/36029621653508440/_attach_282299611393362/Web_hook_location_photo.dxf?Expires=1711623376&Signature=qZSQPST2tdtKM9URUDEIdnwJiXSpNxRabMtmjg6hzdizcVmKJ4UIF-F~0LLiF1LT2y~vbx73CHDNFhZZgBNSjzWszV123qWOn68NyfU6fMdWRlMu4P51q7SWRmxMTlcnMGrF8F29HeilhnZOhBTiF~9oHPa62KRM7Duuq6z-T1RAF7w8mcZH46N4A3wXUyvcIeTaX4jbxCLQ83l2AGsFonD-NVwjeeuNba3MnrwpsTdBIUEbZXnRHNWYJx0i0HhENpr4xJLnX0lDAh9fXI2Zfo8MIapbm7iz8IhTUkwjRdjWU35uabdob1YJ19qVEMoHMqjnftEEkw7n44CYBYUY9w__&Key-Pair-Id=APKAIZL6W5TJO2AK7DOQ"
"tags": [
"Work Order"
]
}
ParameterDefaultInDescription
drawing_version_idOptional[String]queryThe ID of the drawing version
NameTypeDescription
idStringThe ID of the drawing
project_idStringThe ID of the project
nameStringThe name of the drawing
pdf_urlString | nullThe URL of the PDF file
png_urlString | nullThe URL of the PNG file
dxf_urlString | nullThe URL of the DXF file
tagsList[String]Tags added to this drawing

Returns location photos associated with a drawing.

GET https://api.arcsite.com/v1/drawings/<id>/location_photos

Terminal window
curl "https://api.arcsite.com/v1/drawings/<ID>/location_photos" \
-H "Authorization: Bearer your_api_token_here"
Response
{
"location_photos": [
{
"url": "https://cdn-files-1.arcsite.com/location-photo-1.png?Expires=1642318765&Signature=..."
},
{
"url": "https://cdn-files-1.arcsite.com/location-photo-2.png?Expires=1642318765&Signature=..."
}
]
}
ParameterDefaultInDescription
drawing_version_idOptional[String]queryThe ID of the drawing version
NameTypeDescription
location_photosList[Object]List of location photo objects
NameTypeDescription
urlStringThe presigned URL of the photo file

Returns the payment data for a drawing, including balance schedules and deposit amount.

GET https://api.arcsite.com/v1/drawings/<id>/payment

Terminal window
curl "https://api.arcsite.com/v1/drawings/<ID>/payment" \
-H "Authorization: Bearer your_api_token_here"
Response
{
"balance": {
"payment_schedules": [
{
"name": "Deposit",
"amount": 500.00,
"percentage": 25.00
},
{
"name": "On Completion",
"amount": 1500.00,
"percentage": 75.00
}
]
},
"deposit": 500.00
}
ParameterDefaultInDescription
drawing_version_idOptional[String]queryThe ID of the drawing version
NameTypeDescription
balanceObjectThe balance information of the drawing payment
depositNumberThe deposit amount
NameTypeDescription
payment_schedulesList[PaymentSchedule]List of payment schedule objects
NameTypeDescription
nameStringThe name of the payment schedule
amountNumberThe amount of the payment schedule
percentageNumberThe percentage of the payment schedule (0.00 - 100.00)