userArtifactCredAccount_update

PUT /users/{uid}/artifactaccounts/{caid}

Update the meta-data of an artifact account.

Please refer to artifactCredAccount for a complete list of all the artifact account attributes.

Security Summary

  • Requires Authentication: true
  • Entitlements Required: cloud_account_edit

URI Parameters

HTTP Request Body Parameters

A artifactCredAccount object

Example Request

curl "https://uforge.example.com/api/users/{uid}/artifactaccounts/{caid}" -X PUT \
-u USER_LOGIN:PASSWORD -H "Accept: application/xml" --data-binary "@representation.xml"

Example of representation.xml content (the request body):

<ns0:artifactCredAccount xmlns:ns0="http://www.usharesoft.com/uforge">
        <name>my-artifact-account-update</name>
        <host>myremoterepo-update.com</host>
        <type>ftp</type>
        <port>21</port>
        <login>admin-update</login>
        <password>adminpwd-update</password>
</ns0:artifactCredAccount>