GET data/{name}/{recordId}
Gets a record using the default section layout.
Request Information
URI
https://ofd-api.blueprintcpq.net/data/{name}/{recordId}?fields[0]={fields[0]}&fields[1]={fields[1]}&share={share}
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| name |
Page name. |
string |
Required |
| recordId |
Record Identifier. |
string |
Required |
| fields |
Fields to include |
Collection of string |
Required |
| share |
Optional share parameter |
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-09-13T04:08:40.6001734Z",
"UserName": "sample string 1",
"UserId": "0fa2408a-fea8-45c2-9b92-1b677d2cdb8f"
},
"CurrencyField": "57c20194-6a95-437c-a091-df89b6b1095b",
"ChangeLogMessage": "sample string 3",
"Data": [
{
"Field": "a978bc74-5e6c-4111-a9ef-4203474374c0",
"SectionField": "f22aa73d-d759-439c-9306-32054f97d646",
"TableName": "sample string 3",
"FieldName": "sample string 4",
"Locked": true,
"Component": "sample string 6",
"Value": {},
"HumanReadableValue": {}
},
{
"Field": "a978bc74-5e6c-4111-a9ef-4203474374c0",
"SectionField": "f22aa73d-d759-439c-9306-32054f97d646",
"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-09-13T04:08:40.6001734Z","UserName":"sample string 1","UserId":"0fa2408a-fea8-45c2-9b92-1b677d2cdb8f"},"CurrencyField":"57c20194-6a95-437c-a091-df89b6b1095b","ChangeLogMessage":"sample string 3","Data":[{"Field":"a978bc74-5e6c-4111-a9ef-4203474374c0","SectionField":"f22aa73d-d759-439c-9306-32054f97d646","TableName":"sample string 3","FieldName":"sample string 4","Locked":true,"Component":"sample string 6","Value":{},"HumanReadableValue":{}},{"Field":"a978bc74-5e6c-4111-a9ef-4203474374c0","SectionField":"f22aa73d-d759-439c-9306-32054f97d646","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>57c20194-6a95-437c-a091-df89b6b1095b</CurrencyField>
<Data>
<DataValue>
<Component>sample string 6</Component>
<Field>a978bc74-5e6c-4111-a9ef-4203474374c0</Field>
<FieldName>sample string 4</FieldName>
<HumanReadableValue />
<Locked>true</Locked>
<SectionField>f22aa73d-d759-439c-9306-32054f97d646</SectionField>
<TableName>sample string 3</TableName>
<Value />
</DataValue>
<DataValue>
<Component>sample string 6</Component>
<Field>a978bc74-5e6c-4111-a9ef-4203474374c0</Field>
<FieldName>sample string 4</FieldName>
<HumanReadableValue />
<Locked>true</Locked>
<SectionField>f22aa73d-d759-439c-9306-32054f97d646</SectionField>
<TableName>sample string 3</TableName>
<Value />
</DataValue>
</Data>
<LastModified>
<DateTime>2026-09-13T04:08:40.6001734+00:00</DateTime>
<UserId>0fa2408a-fea8-45c2-9b92-1b677d2cdb8f</UserId>
<UserName>sample string 1</UserName>
</LastModified>
<Locked>true</Locked>
<Section>sample string 1</Section>
</SectionData>