Search Requests

Search Requests

Full text search. Any platform, tag, or keyword values specified are required to appear in a search result. In the case of multiple query terms, only one is required to appear.

Request
URI
GET
https://apigw.vmware.com/sampleExchange/v1/search/requests
COPY
Query Parameters
string of array
platform
Optional

Optional platform to search for

string of array
tag
Optional

Optional tag to search for

string of array
keyword
Optional

Optional keyword to search for

string of array
req_platform
Optional

Required platform, must appear in each result.

string of array
req_tag
Optional

Required tag, must appear in each result.

string of array
req_keyword
Optional

Required keyword, must appear in each result.

integer
days
Optional

If provided an integer value for the number of preceeding days to search in. Default is 0 meaning all time.

boolean
summary
Optional

if true returned requests are only a summary and do not include all fields. Much faster...


Authentication
This operation uses the following authentication methods.
Responses
200

successful operation

Returns Array of Request of type(s) application/json
[
    {
        "id": 0,
        "federationId": "string",
        "communitiesUser": "string",
        "title": "string",
        "request": "string",
        "created": "string",
        "lastUpdated": "string",
        "complete": false,
        "duplicateRequestId": 0,
        "categories": [
            {
                "id": 0,
                "parentId": 0,
                "type": "string",
                "name": "string",
                "version": "string"
            }
        ],
        "tags": [
            {
                "id": 0,
                "parentId": 0,
                "category": "string",
                "name": "string"
            }
        ],
        "solutions": [
            {
                "id": 0,
                "requestId": 0,
                "federationId": "string",
                "communitiesUser": "string",
                "description": "string",
                "comments": [
                    {
                        "id": 0,
                        "parentId": 0,
                        "type": "string",
                        "federationId": "string",
                        "communitiesUser": "string",
                        "comment": "string",
                        "created": "string",
                        "lastUpdated": "string"
                    }
                ],
                "created": "string",
                "lastUpdated": "string",
                "acceptedSolution": false,
                "linkedSampleId": 0
            }
        ],
        "comments": [
            {
                "id": 0,
                "parentId": 0,
                "type": "string",
                "federationId": "string",
                "communitiesUser": "string",
                "comment": "string",
                "created": "string",
                "lastUpdated": "string"
            }
        ],
        "assignments": [
            {
                "id": 0,
                "requestId": 0,
                "federationId": "string",
                "communitiesUser": "string",
                "created": "string"
            }
        ],
        "state": "string",
        "favoriteCount": 0
    }
]