Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Returns an array of objects by running the filter with given id.

GET /filters/:id/run

Modified Date Inaccuracies

Some filters may not be supported by current API version.

Parameters

Table of allowed parameters.

_limitunsigned intThe maximum number of resources to return. Default is 10 and maximum is 50.
_fieldspartial stringAllows you to specify optional fields and linked objects to include in the response.

 

Handling the response

Sample Response

GET /filters/4/run.json?_fields=affiliation(status)
{
    "meta": {
        "more_info": "https://affinitylive.jira.com/wiki/display/APIS/Status+Codes#ok",
        "message": "Everything executed as expected.",
        "status": "ok"
    },
    "response": [
        {
            "affiliation": {
                "mobile": "1234",
                "status": "1",
                "id": "1",
                "email": "email@example.com"
            },
            "id": "1",
            "name": "name a"
        },
        {
            "name": "name b",
            "id": "2",
            "affiliation": {
                "id": "2",
                "email": "email@example.com",
                "status": "1",
                "mobile": ""
            }
        }
    ]
}
  • No labels