Purple Community API Documentation
Machine-readable OpenAPI 3.0 specification: https://marketplace.moveworks.com/api/purple-suite/community/openapi.json
The consolidated all-apps document at https://marketplace.moveworks.com/api/purple-suite/openapi.json can be narrowed to this app with ?apps=community, or combined with other apps comma-separated (e.g. ?apps=community,itsm).
Overview
Endpoints
GET /api/purple-suite/community/feature-requests
List feature requests for a session
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
sessionId | query | string | yes | The session document ID whose feature_requests array should be returned |
Responses
200- Array of feature request objects stored on the session
application/jsonarray of:
LegacyFeatureRequestidstring — Unique identifier of the feature request within the sessioncurrent_statusstring — Human-readable status mapped from newStatusNumber
400- sessionId query parameter is missing
404- Session not found
PATCH /api/purple-suite/community/feature-requests/{id}
Update the status of a session feature request
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
id | path | string | yes | The id of the feature request inside the session's feature_requests array |
sessionId | query | string | yes | The session document ID that owns the feature request |
Request body
application/json — required
UpdateFeatureRequestStatusBody
newStatusNumberinteger required — Status code to set. Mapping: 1=New, 2=Existing Functionality/Native Skill, 3=Future Consideration, 6=Not Enough Info to Make Decision, 7=On Roadmap, 8=Delivered, 9=Duplicate, 11=Limited Preview
Responses
200- Feature request updated
text/plainstring (example:
"Feature request updated") 400- Missing required parameters or invalid newStatusNumber
404- Session or feature request not found
GET /api/purple-suite/community/feature_requests
List community feature requests (the customer product-ideas board)
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
X-Instance-ID | header | string | yes | |
limit | query | integer | no | Legacy page size (default 50). Prefer $top. Ignored when $top/$skip are used. |
cursor | query | string | no | Legacy keyset cursor — pass the previous response's nextCursor. Prefer $skip/$top. |
$filter | query | string | no | OData filter expression. Comparison operators: eq, ne, gt, ge, lt, le. Logical: and, or, not, with parentheses for grouping. String functions: contains(field,'x'), startswith(field,'x'), endswith(field,'x'). Membership: field in ('a','b'). Case-insensitive matching via tolower(field) / toupper(field). Nested fields use a slash, e.g. pto_balance/vacation_days. String literals use single quotes; dates are ISO-8601. Examples: "status eq 'active'"; "salary gt 50000 and department eq 'Engineering'"; "contains(tolower(name),'acme')"; "closeDate gt 2026-01-01". |
$select | query | string | no | Comma-separated list of fields to return, e.g. "id,firstName,email". Nested fields via slash ("pto_balance/vacation_days"). The id field is always included. |
$orderby | query | string | no | Sort clause(s), comma-separated, each "field [asc|desc]" (asc is the default). Example: "createdAt desc, lastName asc". Null values sort last. |
$search | query | string | no | Free-text, case-insensitive substring match across the resource's searchable fields. |
$top | query | integer | no | Maximum number of items to return (page size). |
$skip | query | integer | no | Number of matching items to skip before returning results (offset paging). Combine with $top. |
$count | query | boolean | no | When true, include @odata.count (total matches after $filter/$search, before paging) in the response. |
Responses
200- Paginated list
application/jsondataarrayarray of:
FeatureRequestidstringnamestringcurrentStatusstringcreatedBystringmoderatorstringproductAreastringvotesintegercreatedAtstringupdatedAtstring
nextCursorstring — Cursor for the next page, or null on the last page. With $top/$skip this is the next $skip value; otherwise a keyset cursor.totalinteger — Total documents in the collection.@odata.countinteger — Present only when $count=true: total matches after $filter/$search.@odata.truncatedboolean — Present and true only when the collection exceeded the in-memory query cap and results may be incomplete.
400- Invalid OData query (e.g. malformed $filter)
POST /api/purple-suite/community/feature_requests
Submit a community feature request (new product idea)
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
X-Instance-ID | header | string | yes |
Request body
application/json — required
FeatureRequest
idstringnamestringcurrentStatusstringcreatedBystringmoderatorstringproductAreastringvotesintegercreatedAtstringupdatedAtstring
Responses
201- Created
application/jsonFeatureRequestidstringnamestringcurrentStatusstringcreatedBystringmoderatorstringproductAreastringvotesintegercreatedAtstringupdatedAtstring
GET /api/purple-suite/community/feature_requests/{id}
Get feature request
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
X-Instance-ID | header | string | yes | |
id | path | string | yes |
Responses
200- Found
application/jsonFeatureRequestidstringnamestringcurrentStatusstringcreatedBystringmoderatorstringproductAreastringvotesintegercreatedAtstringupdatedAtstring
404- Not found
DELETE /api/purple-suite/community/feature_requests/{id}
Delete feature request
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
X-Instance-ID | header | string | yes | |
id | path | string | yes |
Responses
200- Deleted
application/jsonsuccessboolean
404- Not found
PATCH /api/purple-suite/community/feature_requests/{id}
Update a community feature request (triage status, votes, moderator)
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
X-Instance-ID | header | string | yes | |
id | path | string | yes |
Request body
application/json
FeatureRequest
idstringnamestringcurrentStatusstringcreatedBystringmoderatorstringproductAreastringvotesintegercreatedAtstringupdatedAtstring
Responses
200- Updated
application/jsonFeatureRequestidstringnamestringcurrentStatusstringcreatedBystringmoderatorstringproductAreastringvotesintegercreatedAtstringupdatedAtstring
404- Not found