getAttribData
This method allows searching for the data of an attribute. To use it, it is necessary to follow the standard documented below.
Java class | |
---|---|
Request | web\wwwroot\ws\java\admin\GetAttribDataRequestType.java |
Return | web\wwwroot\ws\java\admin\GetAttribDataResponseType.java |
Request:
ID # | Required | Description |
---|---|---|
IDATTRIBS | X | Attribute ID # (there may be more than one). Example: "Attribute1,Attribute2,Attribute3" |
Request structure:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:admin">
<soapenv:Header/>
<soapenv:Body>
<urn:getAttribData>
<urn:IDATTRIBS>?</urn:IDATTRIBS>
</urn:getAttribData>
</soapenv:Body>
</soapenv:Envelope>
Return:
ID # | Description |
---|---|
return | SUCCESS: An array should be returned with the following attribute information: ▪ CDATTRIBUTE: Attribute code ▪ NMATTRIBUTE: Attribute ID # ▪ FGDATATYPE: Attribute data type: [1 - Text, 2 - Numeric, 3 - Date, 4 - Memo, 5 - Currency] ▪ FGATTRIBUTETYPE: Attribute type ▪ NMLABEL: Attribute label ▪ FGMULTIVALUED: Multivalued attribute [1 - Yes; 2 - No] ▪ VALUE: List of attribute values FAILURE: Return empty. |