V1.0

get

/ec-designer-edc-svc/rest/v1.0/studies/{studyId}/e2bmapping/all

Returns all E2B R3 mapping options that can be assigned to form questions in a study. The response is grouped by E2B category and includes available mapping items, display labels, mandatory indicators, and display order.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

E2B R3 mapping options were returned successfully.
Body ()
Root Schema : schema
Type: array
Show Source
  • E2B R3 Mapping Item v1.0
    Title: E2B R3 Mapping Item v1.0
    E2B R3 mapping category or mapping item returned for form question mapping. Top-level categories contain child mapping items in values.
Nested Schema : E2B R3 Mapping Item v1.0
Type: object
Title: E2B R3 Mapping Item v1.0
E2B R3 mapping category or mapping item returned for form question mapping. Top-level categories contain child mapping items in values.
Show Source
Example:
{
    "name":"E2BR3Categories",
    "value":"E2BD.PatientCharacteristics",
    "label":"D. Patient Characteristics",
    "mandatory":false,
    "order":"10",
    "values":[
        {
            "name":"D.1",
            "value":"patientinitial",
            "label":"D.1 Patient (name or initials)",
            "mandatory":true,
            "order":"10",
            "values":[
            ]
        }
    ]
}
Nested Schema : rules
Type: array
Show Source
Nested Schema : values
Type: array
Show Source
Nested Schema : Form Item Advanced Property Rule v18.0
Type: object
Title: Form Item Advanced Property Rule v18.0
Optional rule metadata for a form item advanced property.
Show Source
  • Display label for the rule value.
    Example: Yes
  • Rule name.
    Example: Answer
  • Rule value. When the value is an ID, it is a UUID, 32-character uppercase hexadecimal string.
    Example: B1B8327AFAA6412287106192AB5984EF
Example:
{
    "name":"Answer",
    "value":"B1B8327AFAA6412287106192AB5984EF",
    "label":"Yes"
}
Nested Schema : E2BR3ItemAdvancedPropDto v1.0
Type: object
Title: E2BR3ItemAdvancedPropDto v1.0
E2B3 Mapping Details Information
Show Source
Nested Schema : rules
Type: array
Show Source
Examples

500 Response

Error
Body ()
Root Schema : ErrorResponseData
Type: object
Title: ErrorResponseData
Error Response Details Information
Show Source
  • Object
    Title: Object
    Object with error details information.
  • Error code which is stored in ErrorCode enum. Example : C1-003
    Example: C1-003
  • Error message which is stored in service property file. Example : Cannot modify object after a study version has been approved
    Example: Cannot modify object after a study version has been approved
Nested Schema : Object
Type: object
Title: Object
Object with error details information.
Example:
{
    "field":"studyId",
    "reason":"Invalid value"
}
Examples

Back to Top