Planfix API: projectGroup.get

From Planfix
Jump to: navigation, search

A function that gets information about a project group. Request format:

<?xml version="1.0" encoding="UTF-8"?>
<request method="projectGroup.get">
  <account></account>
  <sid></sid>
  <projectGroup>
    <id></id>
  </projectGroup>
  <signature></signature>
</request>
Name Type Value Notes
projectGroup.id int project group identifier
signature string(32) signature


Response:

<?xml version="1.0" encoding="UTF-8"?>
<response status="ok">
  <projectGroup>
    <id></id>
    <name></name>
  </projectGroup>
</response>
Name Type Value Notes
id int project group identifier
name string project group name


Otherwise, an error response will be returned:

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


Go To