•  
     
    story #4212 Manage project services with SOAP
Summary
Empty
Manage project services with SOAP
I will be able to activate and deactivate project services with SOAP API.
3 new methods are necessary:
- getProjectServices(): to get the services list
- activateService: to activate a service
- deactivateService: to decativate a service
Empty
Empty
Status
Empty
Done
Development
  • [ ] Does it involves User Interface? 
  • [ ] Are there any mockups?
  • [ ] Are permissions checked?
  • [ ] Does it need Javascript development?
  • [ ] Does it need a forge upgrade bucket?
  • [ ] Does it need to execute things in system events?
  • [ ] Does it impact project creation (templates)?
  • [ ] Is it exploratory?
/**

* getProjectServices – get services available for a project

*

* @param string $sessionKey the session hash associated with the session

opened by the person who calls the service

* @param int $group_id the ID of the project

*

* @return array of services composed with

* - the id of the service
- the name of the service
* - the service activation

*/

function getProjectServices($sessionKey, $group_id);

/**

* activate service – activate a service of a project

*

* @param string $sessionKey the session hash associated with the session

opened by the person who calls the service

* @param int $group_id the ID of the project

* @param int $service_id the ID of the service

*

* @return boolean true if service has been activated, false otherwise

*/

function activateService($sessionKey, $group_id, $service_id);

/**

* deactivate service – deactivate a service of a project

*

* @param string $sessionKey the session hash associated with the session

opened by the person who calls the service

* @param int $group_id the ID of the project

* @param int $service_id the ID of the service

*

* @return boolean true if service has been deactivated, false otherwise

*/

function deactivateService($sessionKey, $group_id, $service_id);
Details
#4212
Sandra Echinard (sechinard)
2013-09-11 15:46
2013-07-02 16:31
623

References
Referencing story #4212
Referenced by story #4212

Artifact

art #4875

Follow-ups

User avatar
  • Technical informations
    Something went wrong, the follow up content couldn't be loaded
    Only formatting have been changed, you should switch to markup to see the changes