GET api/NodeAttributeGroups?groupTitle={groupTitle}
Returns a list of node attribute groups, for a specific group title. Leave the argument blank to return all node attribute groups.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
groupTitle |
Group for which to return the node attribute titles. Leave blank to return all groups |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of Node Attribute Groups
Collection of NodeAttributeGroupName | Description | Type | Additional information |
---|---|---|---|
GroupTitle | string |
None. |
|
UserId | integer |
None. |
|
NodeId | integer |
None. |
|
DateCreated | date |
None. |
|
DateModified | date |
None. |
|
ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "GroupTitle": "sample string 1", "UserId": 1, "NodeId": 1, "DateCreated": "2024-11-21T11:23:44.6515076+00:00", "DateModified": "2024-11-21T11:23:44.6515076+00:00", "ID": 4 }, { "GroupTitle": "sample string 1", "UserId": 1, "NodeId": 1, "DateCreated": "2024-11-21T11:23:44.6515076+00:00", "DateModified": "2024-11-21T11:23:44.6515076+00:00", "ID": 4 } ]
text/html
Sample:
[{"GroupTitle":"sample string 1","UserId":1,"NodeId":1,"DateCreated":"2024-11-21T11:23:44.6515076+00:00","DateModified":"2024-11-21T11:23:44.6515076+00:00","ID":4},{"GroupTitle":"sample string 1","UserId":1,"NodeId":1,"DateCreated":"2024-11-21T11:23:44.6515076+00:00","DateModified":"2024-11-21T11:23:44.6515076+00:00","ID":4}]
application/xml, text/xml
Sample:
<ArrayOfNodeAttributeGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Jotunheim.Models.Core.NodeAttributes.NodeAttributeGroups"> <NodeAttributeGroup> <DateCreated>2024-11-21T11:23:44.6515076+00:00</DateCreated> <DateModified>2024-11-21T11:23:44.6515076+00:00</DateModified> <GroupTitle>sample string 1</GroupTitle> <ID>4</ID> <NodeId>1</NodeId> <UserId>1</UserId> </NodeAttributeGroup> <NodeAttributeGroup> <DateCreated>2024-11-21T11:23:44.6515076+00:00</DateCreated> <DateModified>2024-11-21T11:23:44.6515076+00:00</DateModified> <GroupTitle>sample string 1</GroupTitle> <ID>4</ID> <NodeId>1</NodeId> <UserId>1</UserId> </NodeAttributeGroup> </ArrayOfNodeAttributeGroup>