Solution List

From INAP Dropzone API
(Difference between revisions)
Jump to: navigation, search
(Created page with "The solution list command ==Path== */solution/list/{$status} ==Method== *GET ==Required Data Parameters== *None ==Optional Data Parameters== ...")
 
(Optional Data Parameters)
 
(2 intermediate revisions by one user not shown)
Line 10: Line 10:
  
 
==Optional Data Parameters==
 
==Optional Data Parameters==
*{$status}: The status of the solution, (pending/deployed).
+
*{$status}: The status of the solution, (pending, deployed).
  
 
==Returned Data==
 
==Returned Data==
Line 17: Line 17:
 
   [success] => TRUE/FALSE
 
   [success] => TRUE/FALSE
 
   [data] => stdClass Object(
 
   [data] => stdClass Object(
 
+
    [SOLUTION_ID] => stdClass Object(
 +
      [id] => SOLUTION_ID
 +
      [clientid] => client ID
 +
      [name] => Solution name
 +
      [status] => Solution status
 +
      [servercount] => Number of servers in the solution.
 +
      [devicecount] => Number of servers in the solution.
 +
      [vmcount] => Number of virtual machines in the solution.
 +
      [appcount] =>
 +
      [createdon] => Date the solution was created (unix timestamp).
 +
      [description] => Description about the solution.
 +
      [crowdstatus] =>
 +
      [reviewstars] => How many stars this solution has been rated.
 +
      [documentation] => Documentations details
 +
      [keywords] => Search keywords.
 +
      [code] =>
 +
      [architect_first_name] => The first name of the solution architect.
 +
      [architect_last_name] => The last name of the solution architect.
 +
      [architect_email] => The email address of the solution architect.
 +
      [architect_bio] => The bio of the solution architect.
 +
      [architect_twitter] => The Twitter name of the solution architect.
 +
      [architect_linkedin] => The LinkedIn name of the solution architect.
 +
    )
 
   )
 
   )
 
)
 
)
 
</pre>
 
</pre>

Latest revision as of 19:09, 3 June 2012

The solution list command

Contents

Path

  • /solution/list/{$status}

Method

Required Data Parameters

  • None

Optional Data Parameters

  • {$status}: The status of the solution, (pending, deployed).

Returned Data

stdClass Object(
  [success] => TRUE/FALSE
  [data] => stdClass Object(
    [SOLUTION_ID] => stdClass Object(
      [id] => SOLUTION_ID
      [clientid] => client ID
      [name] => Solution name
      [status] => Solution status
      [servercount] => Number of servers in the solution.
      [devicecount] => Number of servers in the solution.
      [vmcount] => Number of virtual machines in the solution.
      [appcount] => 
      [createdon] => Date the solution was created (unix timestamp).
      [description] => Description about the solution.
      [crowdstatus] => 
      [reviewstars] => How many stars this solution has been rated.
      [documentation] => Documentations details
      [keywords] => Search keywords.
      [code] => 
      [architect_first_name] => The first name of the solution architect.
      [architect_last_name] => The last name of the solution architect.
      [architect_email] => The email address of the solution architect.
      [architect_bio] => The bio of the solution architect.
      [architect_twitter] => The Twitter name of the solution architect.
      [architect_linkedin] => The LinkedIn name of the solution architect.
    )
  )
)
Personal tools