mc_filter_get [line 17]
Array mc_filter_get(
string $p_username, string $p_password, integer $p_project_id
)
|
|
Get all user defined issue filters for the given project.
Parameters:
|
string |
$p_username: |
The name of the user trying to access the filters. |
|
string |
$p_password: |
The password of the user. |
|
integer |
$p_project_id: |
The id of the project to retrieve filters for. |
API Tags:
| Return: | that represents a FilterDataArray structure |
mc_filter_get_issues [line 49]
Array mc_filter_get_issues(
string $p_username, string $p_password, $p_project_id, integer $p_filter_id, integer $p_page_number, integer $p_per_page
)
|
|
Get all issues matching the specified filter.
Parameters:
|
string |
$p_username: |
The name of the user trying to access the filters. |
|
string |
$p_password: |
The password of the user. |
|
integer |
$p_filter_id: |
The id of the filter to apply. |
|
integer |
$p_page_number: |
Start with the given page number (zero-based) |
|
integer |
$p_per_page: |
Number of issues to display per page |
|
|
$p_project_id: |
|
API Tags:
| Return: | that represents an IssueDataArray structure |
mc_filter_get_issue_headers [line 136]
Array mc_filter_get_issue_headers(
string $p_username, string $p_password, $p_project_id, integer $p_filter_id, integer $p_page_number, integer $p_per_page
)
|
|
Get the issue headers that match the specified filter and paging details.
Parameters:
|
string |
$p_username: |
The name of the user trying to access the filters. |
|
string |
$p_password: |
The password of the user. |
|
integer |
$p_filter_id: |
The id of the filter to apply. |
|
integer |
$p_page_number: |
Start with the given page number (zero-based) |
|
integer |
$p_per_page: |
Number of issues to display per page |
|
|
$p_project_id: |
|
API Tags:
| Return: | that represents an IssueDataArray structure |