createUserGallery

This methods allows you to create a new gallery in your account.

Authentication

This method requires authentication.

Arguments

Argument Type Valid Values Default Value Detail
api_key string Valid Values required you need a valid api key to use the API
session_id string Valid session ID required authentified session ID( use loginUser to create a session ID)
name string 32 car. max required Name of the gallery to create

Returned Values

Element (path) Name Type Description
/ id int gallery unique ID
to get medias from a user gallery ID, use getUserGalleries

Example Query


<?xml version="1.0" encoding="utf-8"?>
<methodCall>
	<methodName>xmlrpc.createUserGallery</methodName>
	<params>
		<param>
			<value>
				<string>YOUR_API_KEY</string>
			</value>
		</param>
		<param>
			<value>
				<string>VALID_SESSION_ID</string>
			</value>
        	</param>
		<param>
			<value>
				<string>GALLERY_NAME</string>
			</value>
		</param>
	</params>
</methodCall>

Example Response


<?xml version="1.0" encoding="UTF-8"?>
<methodResponse>
  <params>
    <param>
      <value>
        <struct>
          <member>
            <name>id</name>
            <value>
              <string>ae50eb71</string>
            </value>
          </member>
        </struct>
      </value>
    </param>
  </params>
</methodResponse>

Error Codes

001: Service currently unavailable
The requested service is temporarily unavailable.
002: Failed to parse request
The XML-RPC request document could not be parsed.
010: Missing API Key
The API key passed is missing.
011: Invalid API Key
The API key passed is not valid or has expired.
020: Missing Session ID
The session ID passed is missing. A valid session ID is needed to access this method
021: Invalid Session ID
The session ID passed is not valid. Please login to get a valid session ID.
031: Invalid Method
This method does not exist in the method list.
032: Method not Available
This method is not available for this API Key.
2301: Invalid Gallery Name
The Gallery Name passed is not valid.