GET data/{name}/{section}/{recordId}
Get data for section by record Id.
Request Information
URI
https://scoregroup-uat-api.xaitcpq.net/data/{name}/{section}/{recordId}?share={share}
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
Page name. |
string |
Required |
| section |
Section Name or Id. |
string |
Required |
| recordId |
Record Identifier. |
string |
Required |
| share |
Optional share identifier. |
globally unique identifier |
None. |
Body Parameters
None.
Response Information
Resource Description
Section data.
SectionData| Name | Description | Type | Additional information |
|---|---|---|---|
| Section | string |
None. |
|
| Locked | boolean |
None. |
|
| LastModified | LastModified |
None. |
|
| CurrencyField | globally unique identifier |
None. |
|
| ChangeLogMessage | string |
None. |
|
| Data | Collection of DataValue |
None. |
Response Formats
application/json, text/json
Sample:
{
"Section": "sample string 1",
"Locked": true,
"LastModified": {
"DateTime": "2026-03-24T22:07:32.7181061Z",
"UserName": "sample string 1",
"UserId": "f5543d03-a6bc-4e6f-afd4-c9f73c7e5ef2"
},
"CurrencyField": "e2fa8c93-bfeb-47d9-8ec0-66838bd06b18",
"ChangeLogMessage": "sample string 3",
"Data": [
{
"Field": "6c7d9cd0-9aa8-4428-98b9-066e06bc0c72",
"SectionField": "e1923719-a76d-4646-bffc-21699520ee59",
"TableName": "sample string 3",
"FieldName": "sample string 4",
"Locked": true,
"Component": "sample string 6",
"Value": {},
"HumanReadableValue": {}
},
{
"Field": "6c7d9cd0-9aa8-4428-98b9-066e06bc0c72",
"SectionField": "e1923719-a76d-4646-bffc-21699520ee59",
"TableName": "sample string 3",
"FieldName": "sample string 4",
"Locked": true,
"Component": "sample string 6",
"Value": {},
"HumanReadableValue": {}
}
]
}
text/html
Sample:
{"Section":"sample string 1","Locked":true,"LastModified":{"DateTime":"2026-03-24T22:07:32.7181061Z","UserName":"sample string 1","UserId":"f5543d03-a6bc-4e6f-afd4-c9f73c7e5ef2"},"CurrencyField":"e2fa8c93-bfeb-47d9-8ec0-66838bd06b18","ChangeLogMessage":"sample string 3","Data":[{"Field":"6c7d9cd0-9aa8-4428-98b9-066e06bc0c72","SectionField":"e1923719-a76d-4646-bffc-21699520ee59","TableName":"sample string 3","FieldName":"sample string 4","Locked":true,"Component":"sample string 6","Value":{},"HumanReadableValue":{}},{"Field":"6c7d9cd0-9aa8-4428-98b9-066e06bc0c72","SectionField":"e1923719-a76d-4646-bffc-21699520ee59","TableName":"sample string 3","FieldName":"sample string 4","Locked":true,"Component":"sample string 6","Value":{},"HumanReadableValue":{}}]}
application/xml, text/xml
Sample:
<SectionData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Shared.Models.DataModels">
<ChangeLogMessage>sample string 3</ChangeLogMessage>
<CurrencyField>e2fa8c93-bfeb-47d9-8ec0-66838bd06b18</CurrencyField>
<Data>
<DataValue>
<Component>sample string 6</Component>
<Field>6c7d9cd0-9aa8-4428-98b9-066e06bc0c72</Field>
<FieldName>sample string 4</FieldName>
<HumanReadableValue />
<Locked>true</Locked>
<SectionField>e1923719-a76d-4646-bffc-21699520ee59</SectionField>
<TableName>sample string 3</TableName>
<Value />
</DataValue>
<DataValue>
<Component>sample string 6</Component>
<Field>6c7d9cd0-9aa8-4428-98b9-066e06bc0c72</Field>
<FieldName>sample string 4</FieldName>
<HumanReadableValue />
<Locked>true</Locked>
<SectionField>e1923719-a76d-4646-bffc-21699520ee59</SectionField>
<TableName>sample string 3</TableName>
<Value />
</DataValue>
</Data>
<LastModified>
<DateTime>2026-03-24T22:07:32.7181061+00:00</DateTime>
<UserId>f5543d03-a6bc-4e6f-afd4-c9f73c7e5ef2</UserId>
<UserName>sample string 1</UserName>
</LastModified>
<Locked>true</Locked>
<Section>sample string 1</Section>
</SectionData>