GET data/{name}/{section}/{recordId}

Get data for section by record Id.

Request Information

URI

https://ofd-api.blueprintcpq.net/data/{name}/{section}/{recordId}?share={share}

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional information
Section

string

None.

Locked

boolean

None.

Data

Collection of DataValue

None.

Response Formats

application/json, text/json

Sample:
{
  "Section": "sample string 1",
  "Locked": true,
  "Data": [
    {
      "Field": "a40e692b-919b-48d2-a533-f3e2fba96b07",
      "FieldName": "sample string 2",
      "Locked": true,
      "Component": "sample string 4",
      "Value": {},
      "HumanReadableValue": {}
    },
    {
      "Field": "a40e692b-919b-48d2-a533-f3e2fba96b07",
      "FieldName": "sample string 2",
      "Locked": true,
      "Component": "sample string 4",
      "Value": {},
      "HumanReadableValue": {}
    }
  ]
}

text/html

Sample:
{"Section":"sample string 1","Locked":true,"Data":[{"Field":"a40e692b-919b-48d2-a533-f3e2fba96b07","FieldName":"sample string 2","Locked":true,"Component":"sample string 4","Value":{},"HumanReadableValue":{}},{"Field":"a40e692b-919b-48d2-a533-f3e2fba96b07","FieldName":"sample string 2","Locked":true,"Component":"sample string 4","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">
  <Data>
    <DataValue>
      <Component>sample string 4</Component>
      <Field>a40e692b-919b-48d2-a533-f3e2fba96b07</Field>
      <FieldName>sample string 2</FieldName>
      <HumanReadableValue />
      <Locked>true</Locked>
      <Value />
    </DataValue>
    <DataValue>
      <Component>sample string 4</Component>
      <Field>a40e692b-919b-48d2-a533-f3e2fba96b07</Field>
      <FieldName>sample string 2</FieldName>
      <HumanReadableValue />
      <Locked>true</Locked>
      <Value />
    </DataValue>
  </Data>
  <Locked>true</Locked>
  <Section>sample string 1</Section>
</SectionData>