GET api/NodeAttributeTitlesInGroup?groupId={groupId}

Retrieves the attribute titles within a particular group

Request Information

URI Parameters

NameDescriptionTypeAdditional information
groupId

Group ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

List of attribute titles within that group

Collection of NodeAttributeTitle
NameDescriptionTypeAdditional information
Title

string

Max length: 150

Label

string

None.

Description

string

None.

DateCreated

date

None.

DateModified

date

None.

ID

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Title": "sample string 1",
    "Label": "sample string 2",
    "Description": "sample string 3",
    "DateCreated": "2024-03-29T13:00:59.1227183+00:00",
    "DateModified": "2024-03-29T13:00:59.1227183+00:00",
    "ID": 6
  },
  {
    "Title": "sample string 1",
    "Label": "sample string 2",
    "Description": "sample string 3",
    "DateCreated": "2024-03-29T13:00:59.1227183+00:00",
    "DateModified": "2024-03-29T13:00:59.1227183+00:00",
    "ID": 6
  }
]

text/html

Sample:
[{"Title":"sample string 1","Label":"sample string 2","Description":"sample string 3","DateCreated":"2024-03-29T13:00:59.1227183+00:00","DateModified":"2024-03-29T13:00:59.1227183+00:00","ID":6},{"Title":"sample string 1","Label":"sample string 2","Description":"sample string 3","DateCreated":"2024-03-29T13:00:59.1227183+00:00","DateModified":"2024-03-29T13:00:59.1227183+00:00","ID":6}]

application/xml, text/xml

Sample:
<ArrayOfNodeAttributeTitle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Jotunheim.Models.Core.NodeAttributes">
  <NodeAttributeTitle>
    <DateCreated>2024-03-29T13:00:59.1227183+00:00</DateCreated>
    <DateModified>2024-03-29T13:00:59.1227183+00:00</DateModified>
    <Description>sample string 3</Description>
    <ID>6</ID>
    <Label>sample string 2</Label>
    <Title>sample string 1</Title>
  </NodeAttributeTitle>
  <NodeAttributeTitle>
    <DateCreated>2024-03-29T13:00:59.1227183+00:00</DateCreated>
    <DateModified>2024-03-29T13:00:59.1227183+00:00</DateModified>
    <Description>sample string 3</Description>
    <ID>6</ID>
    <Label>sample string 2</Label>
    <Title>sample string 1</Title>
  </NodeAttributeTitle>
</ArrayOfNodeAttributeTitle>