Planfix API: projectGroup.update

From Planfix
Jump to: navigation, search

Function for updating project group data:

<?xml version="1.0" encoding="UTF-8"?>
<request method="projectGroup.update">
  <account></account>
  <sid></sid>
  <projectGroup>
    <id></id>
    <name></name>
  </projectGroup>
  <signature></signature>
</request>
Name Type Value Notes
sid string(32) session key created as a result of passing authentication
id int Project group identifier
name string Project group name


Response when project group update is successful:

<?xml version="1.0" encoding="UTF-8"?>
<response status="ok">
  <projectGroup>
    <id></id>
  </projectGroup>
</response>
Name Type Value Notes
projectGroup.id int идентификатор измененной группы проектов


Response when project group update is successful:

<?xml version="1.0" encoding="UTF-8"?>
<response status="error">
  <code></code>
</response>


Go To