Web Service Documentation / Categories / Connection/Share Services / Submit Property-Level Custom Field Value
Updated on July 17, 2013
This web service submits data for a list of property-level custom fields based on the data provided in the XML request from a specific Portfolio Manager customer to you. This web service is used within the Test environment to simulate a Portfolio Manager user providing data that is required by you during the share process. You must run this web service as the customer that you the data to be provided from.
23.0
PUT
/property/(propertyId)/customFieldList/recipient/(dxAccountId)
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials | |
Content-Type | application/xml |
Yes
Parameter Name | Description |
---|---|
dxAccountId | Id to the account that the custom field data is provided to. This is typically the data exchange user. |
propertyId | Id to the property |
Request/Response | Schema Name |
---|---|
Request | customField.xsd |
Response | response.xsd |
The following example submits a list of property-level custom fields and their values for a property that has an id of 433. The property-level custom fields are defined by the account that has an id of 872343.
PUT /property/433/customFieldList/recipient/872343<?xml version="1.0" encoding="UTF-8"?> <customFieldList> <customField name="Lot Number">LOT-8761</customField> </customFieldList>
The following example shows that the data was successfully submitted.
<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok"/>