Transfer parcel
- URL:https://<parcelfabricservice-url>/transferParcel
- Required Capability:ArcGIS Parcel Fabric
- Version Introduced:11.0
Description
Transfers a piece of land (single parcel) between source parcels and target parcels.
A piece of land (single parcel) can be transferred in the following supported workflows:
- A piece of land (one parcel) is transferred from a single source parcel to a single target parcel, for example, an annexation
- A piece of land (one parcel) is transferred from multiple source parcels to a single target parcel, for example, road dedication (widening)
- A piece of land (once parcel) is transferred from a single source parcel to multiple target parcels, for example, road vacation
- A piece of land (one parcel) is transferred to a single target parcel. There is no source parcel, for example, annexation of unincorporated land
Request parameters
Parameter | Details |
---|---|
gdbVersion | Parameter specifying the name of the geodatabase version (the default is the DEFAULT version). Syntax
|
sessionId | Parameter representing the token (GUID) used to lock the version. If the calling client is editing a named version, the session ID is required. If the specified version is currently locked by any other session, the request will fail if the session ID is not provided or does not match the session ID that holds the exclusive lock. If the client is editing the default version, the session ID is not required. Syntax
|
transferParcelFeature (Required) | Parameter representing the parcel to be transferred. Only one parcel can be specified as the transfer parcel. Syntax
|
sourceParcelFeatures (Optional) | Parameter representing the source parcels from which land will be transferred. These parcels will be clipped and will become smaller.
Syntax
|
targetParcelFeatures (Required) | Parameter representing the target parcels to which land will be transferred. These parcels will be merged with the transfer parcel and will become larger.
Syntax
|
record (Required) | Parameter for the unique identifier (GUID) of the record being used for the transfer. Syntax
|
defaultAreaUnit (Required) | Parameter representing units in which area will be stored. The parameter is specified as a domain code from the PF_AreaUnits parcel fabric domain. Syntax
Example using square feet:
Example using square meters:
|
async | Optional parameter, true or false. If true, the request is processed as an asynchronous job and a URL is returned that points to a location displaying the status of the job. See the topic on asynchronous usage for more information. The default is false. Syntax
|
f | The response format. The default response format is html. Values: html | json |
Example usage
This example shows the steps for transferring a parcel in a right-of-way dedication. In this type of transfer, a piece of land is transferred from multiple source parcels to a single target parcel.

- Start a service session on the version.
Request URL and parameters:
https://machine.domain.com/webadaptor/rest/services/CountyFabric/VersionManagementServer/versions/E4DAED9D-C859-489B-9053-767A45F1D97C/startReading f=json sessionId={c47be202-3682-4ab0-a730-9dd641487ba7}
- Start an edit session on the version.
Request URL and parameters:
https://machine.domain.com/webadaptor/rest/services/CountyFabric/VersionManagementServer/versions/E4DAED9D-C859-489B-9053-767A45F1D97C/startEditing f=json sessionId={c47be202-3682-4ab0-a730-9dd641487ba7}
- Transfer one parcel of land from multiple source parcels to a single target parcel.
Request URL and parameters:
https://machine.domain.com/webadaptor/rest/services/CountyFabric/ParcelFabricServer/transferParcel f=json gdbVersion=admin.Version1 sessionId={c47be202-3682-4ab0-a730-9dd641487ba7} transferParcelFeature={"id":"{D664B654-D8F2-453C-966F-6FA66E1AE2E2}","layerId":"24"} sourceParcelFeatures=[{"id":"{8233045B-A337-4087-957A-4F8A4814FF09}","layerId":"15"},{"id":"{EC850938-01F4-48C6-B7DB-16EFB0B544BC}","layerId":"15"}, {"id":"{BCF8B086-B5DB-472A-89AA-6A3AF54C75BD}","layerId":"15"}] targetParcelFeatures=[{"id":"{449572F3-C2E1-405D-B642-4CFA90C10C46}","layerId":"21"}] record={89E0F2EE-9788-4008-9CD4-1F02ABDCD49F} defaultAreaUnit=109405 async=false
- If edits are complete, stop the edit session.
- Stop and release the service session.
JSON Response syntax
Response when async is false:
{
"moment": <datetime>,
"exceededTransferLimit: <true | false>,
"serviceEdits": [{ // only if transfer limit is not exceeded
"editedFeatures": {
"spatialReference": {}
"updates": [
[{ "attributes": {}
"geometry": {}
}]]
"adds":[
{ "attributes": {}
"geometry": {}
]}]
"success": <true | false>,
"error": { // only if success is false
"extendedCode": <HRESULT>,
"message": <error message>,
"details": [<detail>]
}
Response when async is true:
{
"statusUrl": <url>
}
JSON Response example
Response example when async is false:
{
"moment": 1654559299910,
"exceededTransferLimit": false,
"serviceEdits": [
{
"id": 1,
"editedFeatures": {
"spatialReference": {
"wkid": 102740,
"latestWkid": 2278,
"xyTolerance": 0.00328083333333333,
"zTolerance": 0.001,
"mTolerance": 0.001,
"falseX": -126725700,
"falseY": -77828800,
"xyUnits": 3048.00609601219,
"falseZ": -100000,
"zUnits": 10000,
"falseM": -100000,
"mUnits": 10000
},
"updates": [
[
{
"attributes": {
"OBJECTID": 124012,
"Name": "Dedication",
"RecordType": 1,
"RecordedDate": null,
"GlobalID": "{89E0F2EE-9788-4008-9CD4-1F02ABDCD49F}",
"created_user": "admin",
"create_date": 1654557071000,
"last_edited_user": "admin",
"last_edited_date": 1654557737000,
"COGOAccuracy": null,
"ParcelCount": 1,
"Description": null,
"Surveyor": null,
"Company": null,
"SurveyDate": null,
"TrueMidBrg": null,
"RetiredParcelCount": 0,
"Shape__Area": 4920.73876999236654,
"Shape__Length": 686.105105373444644
},
"geometry": {
"hasZ": true,
"rings": [
[
[
3159336.396402508,
13845788.2751287222,
0
],
[
3159321.412508592,
13845787.579592064,
0
],
[
3159308.58018517494,
13846115.4299862236,
0
],
[
3159323.56834417582,
13846116.0277540535,
0
],
[
3159336.396402508,
13845788.2751287222,
0
]
]
]
}
},
{...}
"success": true
}