Web Service Documentation / Categories / Connection/Share Services / Submit Customer-Level Custom Field Value(s)
Updated on July 17, 2013
This web service submits data for a list of customer-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 connection process. You must run this web service as the customer that you the data to be provided from.
23.0
PUT
/account/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. |
Request/Response | Schema Name |
---|---|
Request | customField.xsd |
Response | response.xsd |
The following example submits a list of customer-level custom fields and their values. The customer-level custom fields are defined by the account that has an id of 872343.
PUT /account/customFieldList/recipient/872343<?xml version="1.0" encoding="UTF-8"?> <customFieldList> <customField name="Customer Number">FG123</customField> </customFieldList>
The following example shows that the data was successfully submitted.
<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok"/>