getPhotoshopPathNames

Returns an array of Photoshop path names for the given image.

Syntax

Authorized User Types

  • IpsAdmin
  • IpsCompanyAdmin
  • IpsUser
  • ImagePortalAdmin
  • ImagePortalUser
  • ImagePortalContrib
  • ImagePortalContribUser

Parameters

Input (getPhotoshopPathNamesParam)

Name Type Required Description
companyHandle xsd:string Yes Handle to the company that contains the image you want to work with.
assetHandle xsd:string Yes Handle to the image asset.

Output (getPhotoshopPathNamesReturn)

Name Type Required Description
pathNameArray types:StringArray Yes An array of Photoshop path names in an image.

Examples

Request

<getPhotoshopPathNamesParam xmlns="http://www.scene7.com/IpsApi/xsd/2012-07-31">
  <companyHandle>c|301</companyHandle>
  <assetHandle>a|26014</assetHandle>
</getPhotoshopPathNamesParam>

Response

<getPhotoshopPathNamesReturn xmlns="http://www.scene7.com/IpsApi/xsd/2012-07-31">
  <pathNameArray>
    <items>Background Path</items>
    <items>Face Path</items>
  </pathNameArray>
</getPhotoshopPathNamesReturn>

On this page