Planfix API TaskStatus.getSetList: Difference between revisions
From Planfix
No edit summary |
No edit summary |
||
Line 35: | Line 35: | ||
</response> | </response> | ||
</source> | </source> | ||
{| class="wikitable" style="margin-top: 1em; width:100% " | {| class="wikitable" style="margin-top: 1em; width:100% " | ||
Line 51: | Line 50: | ||
|- | |- | ||
|} | |} | ||
An empty response will not generate an error. If there are no processes in the resulting selection, the response will look as follows: | An empty response will not generate an error. If there are no processes in the resulting selection, the response will look as follows: |
Revision as of 12:34, 23 August 2022
Function for getting a list of task processes. Request format:
<?xml version="1.0" encoding="UTF-8"?>
<request method="taskStatus.getSetList">
<account></account>
<sid></sid>
<signature></signature>
</request>
Name | Type | Value | Notes |
---|---|---|---|
signature | string(32) | signature |
Response:
<?xml version="1.0" encoding="UTF-8"?>
<response status="ok">
<taskStatusSets totalCount="totalCount">
<taskStatusSet>
<id></id>
<name></name>
</taskStatusSet>
<!-- ... -->
</taskStatusSets>
</response>
Name | Type | Value | Notes |
---|---|---|---|
taskStatusSets | root element, contains a list of task processes | ||
taskStatusSets totalCount | int | number of task processes | |
taskStatusSet | root element that describes the process in the list | ||
id | int | process identifier | |
name | string | process name |
An empty response will not generate an error. If there are no processes in the resulting selection, the response will look as follows:
<?xml version="1.0" encoding="UTF-8"?>
<response status="ok">
<taskStatusSets totalCount="0"></taskStatusSets>
</response>
Otherwise, an error response will be returned:
<?xml version="1.0" encoding="UTF-8"?>
<response status="error">
<code></code>
</response>