userArtifactCredAccount_create

POST /users/{uid}/artifactaccounts

Creates a new artifact account for an user.

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

Security Summary

  • Requires Authentication: true
  • Entitlements Required: cloud_account_create

URI Parameters

  • uid (required): the id of the user

HTTP Request Body Parameters

A artifactCredAccount object

Example Request

curl "https://uforge.example.com/api/users/{uid}/artifactaccounts" -X POST \
-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</name>
        <host>myremoterepo.com</host>
        <type>ftp</type>
        <port>21</port>
        <login>admin</login>
        <password>adminpwd</password>
</ns0:artifactCredAccount>