Get A Property Group

Get A Property Group

Retrieve a Property Group by its id. Searches the current tenant. If no tenant specific group is found, searches within the global scope.

Request
URI
GET
https://{api_host}/properties-service/api/propertygroups/{id}
COPY
Path Parameters
string
id
Required

the id of the Property Group


Responses
200

successful operation

Returns ContextPropertyGroup of type(s) */*
{
    "lastUpdated": "string",
    "createdDate": "string",
    "tenantId": "string",
    "description": "string",
    "id": "string",
    "label": "string",
    "version": 0,
    "properties": {
        "properties": {
            "facets": {
                "facets": {}
            }
        }
    }
}
string As date-time As date-time
lastUpdated
Optional

lastUpdated

string As date-time As date-time
createdDate
Optional

createdDate

string
tenantId
Optional

tenantId

string
description
Optional
Constraints: minLength: 0 maxLength: 2000

description

string
id
Optional

id

string
label
Optional
Constraints: minLength: 0 maxLength: 255

label

integer As int64 As int64
version
Optional

version

object
properties
Optional

properties


Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/properties-service/api/propertygroups/{id}