GET api/NodeAttributeMasterGroups?masterGroupTitle={masterGroupTitle}
Gets the master groups with a specific master group title
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| masterGroupTitle |
Master Group Title |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of master groups with this title
Collection of NodeAttributeMasterGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| MasterGroupTitle | string |
None. |
|
| DateCreated | date |
None. |
|
| DateModified | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"MasterGroupTitle": "sample string 2",
"DateCreated": "2025-10-21T05:04:11.3316509+00:00",
"DateModified": "2025-10-21T05:04:11.3316509+00:00"
},
{
"ID": 1,
"MasterGroupTitle": "sample string 2",
"DateCreated": "2025-10-21T05:04:11.3316509+00:00",
"DateModified": "2025-10-21T05:04:11.3316509+00:00"
}
]
text/html
Sample:
[{"ID":1,"MasterGroupTitle":"sample string 2","DateCreated":"2025-10-21T05:04:11.3316509+00:00","DateModified":"2025-10-21T05:04:11.3316509+00:00"},{"ID":1,"MasterGroupTitle":"sample string 2","DateCreated":"2025-10-21T05:04:11.3316509+00:00","DateModified":"2025-10-21T05:04:11.3316509+00:00"}]
application/xml, text/xml
Sample:
<ArrayOfNodeAttributeMasterGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Jotunheim.Models.Core.NodeAttributes.NodeAttributeGroups">
<NodeAttributeMasterGroup>
<DateCreated>2025-10-21T05:04:11.3316509+00:00</DateCreated>
<DateModified>2025-10-21T05:04:11.3316509+00:00</DateModified>
<ID>1</ID>
<MasterGroupTitle>sample string 2</MasterGroupTitle>
</NodeAttributeMasterGroup>
<NodeAttributeMasterGroup>
<DateCreated>2025-10-21T05:04:11.3316509+00:00</DateCreated>
<DateModified>2025-10-21T05:04:11.3316509+00:00</DateModified>
<ID>1</ID>
<MasterGroupTitle>sample string 2</MasterGroupTitle>
</NodeAttributeMasterGroup>
</ArrayOfNodeAttributeMasterGroup>