Using Connect Enterprise Web Services |
|||
| Action reference > custom-fields | |||
Breeze 4 and Breeze 5; Connect Enterprise Web Services 6
Lists all custom fields defined in an account and details about the fields.
Custom fields provide information about objects (SCOs) or principals that is not already defined in Adobe Connect Enterprise Manager. You can create custom fields, or update their value, using custom-field-update.
http://server_name/api/xml
?action=custom-fields
&filter-definition=value
&session=BreezeSessionCookieValue
|
Name |
Type |
Required |
Description |
|---|---|---|---|
|
Filter definition |
N |
A filter to reduce the volume of the response. |
|
|
|
String |
N |
The value of the |
You can filter the response on any element or attribute it contains.
<?xml version="1.0" encoding="utf-8" ?>
<results>
<status code=allowedValue />
<custom-fields>
<field permission-id=allowedValue object-type=allowedValue
field-id=string account-id=integer display-seq=integer
field-type=allowedValue is-primary=boolean is-required=boolean>
<name>string</name>
</field>
</custom-fields>
</results>
|
Element |
Attribute |
Type |
Description |
|---|---|---|---|
|
|
Container |
All results the action returns. |
status
|
|
Empty, with attributes |
The status of the response. |
|
|
Allowed value |
A code indicating the response status (see status). |
|
|
Container |
The list of custom fields that match the query. |
|
|
Container |
Details about one custom field. |
|
|
Allowed value |
The permission the current user has to access the custom field (see permission-id for values). |
|
|
Allowed value |
The type of object the custom field describes (see permission-id for values). |
|
field-id
|
String |
The name of the field, as identified on the server. |
|
account-id
|
Integer |
The ID of the account in which the custom field is defined. |
|
display-seq
|
Integer |
The sequence in which Enterprise Manager or your application displays the custom field, relative to other custom fields. |
|
field-type
|
Allowed value |
The type of data the custom field accepts. Allowed values are |
|
is-primary
|
Boolean |
Whether the custom field can be deleted ( |
|
is-required
|
Boolean |
Whether this custom field is required. |
name
|
|
String |
The name of the custom field as Enterprise Manager or your application displays it. |
https://example.com/api/xml?action=custom-fields&filter-like-name=name
<?xml version="1.0" encoding="utf-8" ?>
<results>
<status code="ok" />
<custom-fields>
<field permission-id="manage" object-type="object-type-principal"
field-id="first-name" account-id="624520" display-seq="1"
field-type="text" is-primary="true" is-required="true">
<name>First Name</name>
</field>
<field permission-id="manage" object-type="object-type-principal"
field-id="last-name" account-id="624520" display-seq="2"
field-type="text" is-primary="true" is-required="true">
<name>Last Name</name>
</field>
</custom-fields>
</results>
Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/breeze/6/xml_api/04a_act8.htm