V1.0

post

/ec-dc-svc/rest/v1.0/studies/{studyId}/{mode}/labnormals

Creates lab data elements for a subject for a particular visit and particular form.

Request

Path Parameters
  • Indicates the operational mode of the study. Accepted values: active, test, or training.
    Example:
    active
  • Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example:
    1BC29B36F5D64B1B95F4BDBBCEA481BE
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
  • Unique identifier(UUID, 32-character uppercase hexadecimal string) of the clinical event. A clinical event can be, for example: Screening, Randomization, Visit 1, etc. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example: 799EF3745FC545589F186D2198F3C65E
  • Numeric value representing the instance number of the event. Used for repeated or unscheduled visits (e.g., 1, 2, 3). It is null for scheduled events.
    Example: 1
  • Unique identifier(UUID, 32-character uppercase hexadecimal string) representing the clinical form.
    Example: 899EF3745FC545589F186D2198F3C65E
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) of the lab normals record. Include for update requests; omit for new create.
    Example: 999EF3745FC545589F186D2198F3C65E
  • Unique identifier of the site. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example: 699EF3745FC545589F186D2198F3C65E
  • String representing the version of the study. Helps track changes in form or study design.
    Example: 1.0.0.3
  • Unique identifier of the subject. Used to represent a participant enrolled in a study. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example: A1B2C3D4E5F6471890ABCDEF12345678
Examples

Back to Top

Response

Supported Media Types

200 Response

Success
Body ()
Root Schema : LabResponse
Type: object
Response containing lab normals processing status and created/updated data elements for v1
Show Source
Nested Schema : items
Type: array
List of data elements generated or updated for the lab normals request
Show Source
Example:
[
    {
        "id":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
        "versionStart":"2025-10-16T14:30:31.892Z",
        "transactionStart":"2025-10-16T14:30:31.892Z",
        "transactionEnd":"2025-10-16T14:35:00.000Z",
        "validationStatus":"SUCCESS",
        "validationFailure":null,
        "studyId":"ABCDEF1234567890ABCDEF1234567890",
        "studyName":"STUDY-ABC",
        "studyVersion":"21",
        "subjectId":"10F75668189F422F9A461A315D211111",
        "eventId":"ADF5A7800A954FA5B831E7B6B9CA39A9",
        "formId":"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF",
        "formSectionId":"B6E0C7D5A1F3428C8B8B6A77C5E9D4AA",
        "repeatSequenceNumber":1,
        "itemId":"DEADBEEFDEADBEEFDEADBEEFDEADBEEF",
        "siteId":"ABCDEF1234567890ABCDEF1234567890",
        "variableId":"0123456789ABCDEF0123456789ABCDEF",
        "originatorId":"FEDCBA9876543210FEDCBA9876543210",
        "vendorCode":"VENDOR1",
        "value":"13.5",
        "measureUnit":"g/dL",
        "normalizedValue":"A78AD8C31CD843CD8B847C06C0420FF5",
        "normalizedUnitId":"A78AD8C31CD843CD8B847C06C0420FF5",
        "numValue":13,
        "floatValue":13.5,
        "dateTimeValueUTC":"2025-10-16T14:30:31.892Z",
        "monthValue":10,
        "dayValue":16,
        "yearValue":2025,
        "hourValue":14,
        "minuteValue":30,
        "secondValue":31,
        "reason":"Initial entry",
        "comment":"Captured by device",
        "objectVersionNumber":14,
        "eventInstanceNum":1,
        "targets":[
            "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE5",
            "93CC828113AC439181071CB44D2C6FE5.93CC828113AC439181071CB44D2C6FE7"
        ],
        "dataFlag":"1BC29B36F5D64B1B95F4BDBBCEA481BE",
        "propertyId":"40DB4EF4847849CCB24EFCCB71CDA436",
        "propertyVersionStart":"2025-10-16T14:30:31.892Z"
    }
]
Nested Schema : labnormalsStatus
Type: array
List of lab normals processing status codes resulting from validation and mapping
Show Source
  • List of lab normals processing status codes resulting from validation and mapping
    Example: ["SUCCESS"]
Example:
[
    "SUCCESS"
]
Nested Schema : DataElementDto6
Type: object
Data element response with additional property linkage details
Show Source
Examples

400 Response

Bad request.
Body ()
Root Schema : DcsResponse
Type: object
Show Source
Nested Schema : ErrorResponseData
Type: object
Show Source
Nested Schema : result
Type: object
Nested Schema : details
Type: object
Back to Top