projects/{projectId}/packages/{packageId}/takeoff-types/{takeoffTypeId}
Retrieves a specified takeoff type for a package.
You need to create the type in the UI. For more information, see the ACC Takeoff Types help documentation.
Resource Information
Method and URI | GET https://developer.api.autodesk.com/construction/takeoff/v1/projects/{projectId}/packages/{packageId}/takeoff-types/{takeoffTypeId} |
Authentication Context | user context required |
Required OAuth Scopes | data:read |
Data Format | JSON |
Request
Headers
Authorization* string | Must be Bearer <token> , where <token> is obtained via a three-legged OAuth flow. |
region string | Specifies the region where the service is located.
Possible values: |
Request
URI Parameters
projectId string: UUID | The ID of the project.
This corresponds to project ID in the Data Management API, and can be specified in the form of “UUID” or b.”UUID”. To learn how to find the project ID, see the Retrieve ACC Account and project ID tutorial. |
packageId string: UUID | The takeoff package ID.
To find the ID, call GET packages. |
takeoffTypeId string: UUID | The takeoff type ID.
To find the ID, call GET takeoff-types. |
Response
HTTP Status Code Summary
200 OK | Successfully retrieved the takeoff type. |
400 Bad Request | The parameters of the requested operation are invalid. |
401 Unauthorized | The provided bearer token is not valid. |
403 Forbidden | The user or service represented by the bearer token does not have permission to perform this operation. |
404 Not Found | The requested resource could not be found. |
429 Too Many Requests | Rate limit exceeded; wait some time before retrying. The ‘Retry-After’ header might provide the amount of the time to wait. |
500 Internal Server Error | An unknown error occurred on the server. |
Response
Body Structure (200)
id string: UUID | The takeoff type ID. |
name string | The takeoff type name.
Max length: 64 |
description string | A description of the takeoff type.
Max length: 256 |
color string | The color of the takeoff type as it appears on the sheet or model.
A color is represented by a value consisting of 6 or 8 hexadecimal digits, prefixed with a hash (#) symbol. In the 6-digit notation, the first pair of digits represent the red channel, the middle pair of digits represent the green channel and the last pair of digits represent the blue channel. The color is completely opaque. The 8-digit notation follows the structure of the 6-digit notation, where the additional last 2-digits represent the alpha channel ( |
borderColor string | The color of the takeoff type as it appears on the sheet or model.
A color is represented by a value consisting of 6 or 8 hexadecimal digits, prefixed with a hash (#) symbol. In the 6-digit notation, the first pair of digits represent the red channel, the middle pair of digits represent the green channel and the last pair of digits represent the blue channel. The color is completely opaque. The 8-digit notation follows the structure of the 6-digit notation, where the additional last 2-digits represent the alpha channel ( |
shapeType enum:string | The shape of the count marker.
A count marker is one of the takeoff tool type options that is selected in the UI when creating a takeoff type. Possible values: |
countMarkerSize number | The size of the count marker.
You must set this value in the UI. |
tool enum:string | The type of tool used to create takeoff items of this takeoff type.
Possible values: Corresponding UI names: |
propertyDefinitions array: object | A list of additional, user provided parameters associated with a 2D takeoff type. |
name string | The name of the property.
Max length: 256 |
unitOfMeasure enum:string | The unit of measurement.
Possible values: |
value number | The value of the property. |
valueLocation enum:string | The location of the value.
For properties Length, Width, Height, Depth and Thickness: For properties WeightByLength, WeightByArea and WeightByVolume: |
modelMappings array: object | A list of model properties used to calculate output.
Only relevant for 3D models. |
name string | The name of the mapping.
Max length: 256 |
mappingExpression string | The mapping formula. |
primaryQuantityDefinition object | The classification quantity details. |
outputName string | A custom output name from the user. |
classificationCodeOne string | The classification code selected from the first classification system. |
classificationCodeTwo string | The classification code selected from the second classification system. |
expression string | The formula to calculate the quantity. |
unitOfMeasure enum:string | The unit of measurement.
Possible values: |
secondaryQuantityDefinitions array: object | A list of secondary classification quantity details. |
outputName string | A custom output name from the user. |
classificationCodeOne string | The classification code selected from the first classification system. |
classificationCodeTwo string | The classification code selected from the second classification system. |
expression string | The formula to calculate the quantity. |
unitOfMeasure enum:string | The unit of measurement.
Possible values: |
createdAt datetime: ISO 8601 | The date and time when the resource was created, in the following format: YYYY-MM-DDThh:mm:ssZ . |
updatedAt datetime: ISO 8601 | The date and time when the resource was last updated, in the following format: YYYY-MM-DDThh:mm:ssZ . |
updatedByName string | The name of the user who last updated the resource. |
Example
Successfully retrieved the takeoff type.
Request
curl -v 'https://developer.api.autodesk.com/construction/takeoff/v1/projects/:projectId/packages/:packageId/takeoff-types/:takeoffTypeId' \
-H 'Authorization: Bearer AuIPTf4KYLTYGVnOHQ0cuolwCW2a'
Response
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "Foundation Slab",
"description": "Slab in the garage",
"color": "#11ff11",
"borderColor": "#11ff11",
"shapeType": "SQUARE",
"countMarkerSize": 1.5,
"tool": "DISTANCE",
"propertyDefinitions": [
{
"name": "Height",
"unitOfMeasure": "LF",
"value": 2.5,
"valueLocation": "INSTANCE_WITH_TAKEOFF_TYPE_DEFAULT"
},
{
"name": "Width",
"unitOfMeasure": "LF",
"value": 1,
"valueLocation": "INSTANCE_WITH_TAKEOFF_TYPE_DEFAULT"
}
],
"modelMappings": [
{
"name": "Area",
"mappingExpression": "Sill_Height*Width"
}
],
"primaryQuantityDefinition": {
"classificationCodeOne": "037000",
"classificationCodeTwo": "044000",
"outputName": "Exterior Wall",
"expression": "Distance*Width*Height*1.1",
"unitOfMeasure": "CY"
},
"secondaryQuantityDefinitions": [
{
"classificationCodeOne": "CustomAreaCode1",
"classificationCodeTwo": "CustomAreaCode2",
"outputName": "Custom Flooring",
"expression": "Distance*Width",
"unitOfMeasure": "SF"
}
],
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2020-11-11T12:32:45Z",
"updatedByName": "Jane Johnson"
}