Get multiple Property Groups

Get multiple Property Groups

Retrieve mulitple Property Groups by a set of ids. Searches within the specified tenant and in the global scope.

Request
URI
POST
https://{api_host}/properties-service/api/propertygroups/ids
COPY
Query Parameters
string
tenantId
Optional

The tenant to search


Request Body

The ids of the Property Groups to retrieve

Array of string of type(s) application/json
Optional
[
    {}
]
Responses
200

successful operation

[
    {
        "lastUpdated": "string",
        "createdDate": "string",
        "tenantId": "string",
        "description": "string",
        "id": "string",
        "label": "string",
        "version": 0,
        "properties": {
            "properties": {
                "facets": {
                    "facets": {}
                }
            }
        }
    }
]

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '[{}]' https://{api_host}/properties-service/api/propertygroups/ids