메타데이터 필드에 대한 모든 값을 반환합니다.
구문
IpsUser
IpsAdmin
IpsCompanyAdmin
ImagePortalAdmin
ImagePortalUser
ImagePortalContrib
ImagePortalContribUser
입력(getDistinctMetadataValuesParam)
이름 | 유형 | 필수 | 설명 |
---|---|---|---|
companyHandle | xsd:string |
예 | 데이터를 가져올 회사의 핸들입니다. |
metadataKey | xsd:string |
예 | 점 표기법의 메타데이터 키. |
출력(getDistinctMetadataValuesReturn)
이름 | 유형 | 필수 | 설명 |
---|---|---|---|
valueArray | types:ValueArray |
예 | 요청된 메타데이터 필드의 값입니다. |
요청
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.scene7.com/IpsApi/xsd"
xmlns:ns="http://www.scene7.com/IpsApi/xsd/2010-01-31">
<soapenv:Header>
<xsd:authHeader>
<xsd:user>user@company.com</xsd:user>
<xsd:password>password</xsd:password>
</xsd:authHeader>
</soapenv:Header>
<soapenv:Body>
<ns:getDistinctMetadataValuesParam>
<ns:companyHandle>680</ns:companyHandle>
<ns:metadataKey>dc.format</ns:metadataKey>
</ns:getDistinctMetadataValuesParam>
</soapenv:Body>
</soapenv:Envelope>
응답
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<getDistinctMetadataValuesReturn xmlns="http://www.scene7.com/IpsApi/xsd/2010-01-31">
<valueArray>
<items>
<value>N/A</value>
<count>412</count>
</items>
<items>
<value>image/jpeg</value>
<count>189</count>
</items>
<items>
<value>image/epsf</value>
<count>1</count>
</items>
<items>
<value>image/tiff</value>
<count>3</count>
</items>
</valueArray>
</getDistinctMetadataValuesReturn>
</soapenv:Body>
</soapenv:Envelope>