Globals#
For most endpoints, the Playbooks API will accept the following query parameters to sort and modify your results.
Each resource will then accept table-specific parameters, such as status=active
, for filtering and other response modifications.
Please review the documentation for each resource to learn more about the table-specific parameters they'll accept.
Standard Parameters#
Attribute | Type | Description |
---|---|---|
page | number | Zero indexed page |
pageSize | number | How many items to return per page |
sortProp | string | Sort results by a specific property |
sortValue | string | Sort results by a specific value |
include | string | Comma separated string of related data to include |
Resource Specific Parameters#
Attribute | Type | Description |
---|---|---|
Status | string | Filter results by status |
Examples#
ExamplesGET "/repos?status=active" GET "/repos?sortProp=name&sortValue=asc" GET "/repos?sortProp=name&sortValue=asc&page=0&pageSize=20" GET "/repos?sortProp=name&sortValue=asc&page=0&pageSize=20&include=framework,language,license"