Skip to content

Field Data

You can get field data values from a drawing with the following APIs.

Get field data value by drawing id.

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

Terminal window
curl "https://api.arcsite.com/v1/drawings/<ID>/field_data" \
-H "Authorization: Bearer your_api_token_here"
Response
{
"groups": [
{
"name": "Default Group",
"field_data": [
{
"name": "Property Address",
"type": "TEXT",
"value": "Address 1, Address 2"
},
{
"name": "No Visible Evidence",
"type": "SWITCH",
"value": true
},
{
"name": "Sign by Seller(s) or Owner",
"type": "SELECT",
"value": ["Seller(s)"]
}
]
}
]
}
ParameterDefaultInDescription
drawing_version_idOptional[String]queryThe ID of the drawing version
NameTypeDescription
groupsList[Group]List of field data groups in the drawing
NameTypeDescription
nameStringThe name of the field data group
field_dataList[FieldData]List of field data items within this group
NameTypeDescription
nameStringThe name of the field
typeStringThe type of the field. Possible values: TEXT, SWITCH, SELECT, DATE, etc.
valueAnyThe value of the field. The data type depends on the field type: String for TEXT/DATE, Boolean for SWITCH, Array of Strings for SELECT