[Deprecated]: v1.0

get

/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/settings

Deprecated: Retrieves the study settings for a given study and mode. Rights: OrsInventoryGet.

Request

Path Parameters
  • Indicates the operational mode of the study. Accepted values: active, test, or training.
    Example:
    test
  • Unique identifier of the study. Uses UUID in a 32-character uppercase hexadecimal string format.
    Example:
    1BC29B36F5D64B1B95F4BDBBCEA481BE

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : SupplySettingResponse
Type: object
Title: SupplySettingResponse
Contains supply setting response detail.
Show Source
Example:
{
    "studyIdentifier":"B1B8327AFAA6412287106192AB5984EF",
    "studyVersionStart":"2026-02-21T08:43:01Z",
    "initialShipments":{
        "whenToSend":"AT_SITE_ACTIVATION",
        "visitNumber":5
    },
    "resupplyType":[
        {
            "resupplyName":"Primary",
            "resupplyType":"MINMAX"
        }
    ],
    "inventory":{
        "daysToRun":{
            "sunday":false,
            "monday":true,
            "tuesday":true,
            "wednesday":true,
            "thursday":true,
            "friday":true,
            "saturday":false
        },
        "timeToRun":{
            "timeHour":2,
            "timeMinute":30,
            "timePeriod":"AM",
            "timeZone":"UTC"
        }
    },
    "kitOrdering":{
        "allowed":"Y",
        "blindingGroupsRequired":"Y",
        "kitsToPreventUnblinding":"2",
        "kitType":"BOTTLE"
    },
    "labelGroups":"LG-01",
    "shippingGroups":"SG-01",
    "consignment":{
        "enableTemperatureExecursion":"N",
        "notReceivedDaysToWaitBeforeSiteNotified":5,
        "siteCanRequestManual":"Y"
    }
}
Nested Schema : Consignment
Type: object
Title: Consignment
Contains consignment detail.
Show Source
Example:
{
    "enableTemperatureExecursion":"N",
    "notReceivedDaysToWaitBeforeSiteNotified":5,
    "siteCanRequestManual":"Y"
}
Nested Schema : InitialShipments
Type: object
Title: InitialShipments
Contains initial shipment detail.
Show Source
Example:
{
    "whenToSend":"AT_SITE_ACTIVATION",
    "visitNumber":5
}
Nested Schema : InventorySchedule
Type: object
Title: InventorySchedule
Contains inventory schedule details.
Show Source
Example:
{
    "daysToRun":{
        "sunday":false,
        "monday":true,
        "tuesday":true,
        "wednesday":true,
        "thursday":true,
        "friday":true,
        "saturday":false
    },
    "timeToRun":{
        "timeHour":2,
        "timeMinute":30,
        "timePeriod":"AM",
        "timeZone":"UTC"
    }
}
Nested Schema : KitOrdering
Type: object
Title: KitOrdering
Contains kit ordering detail.
Show Source
Example:
{
    "allowed":"Y",
    "blindingGroupsRequired":"Y",
    "kitsToPreventUnblinding":"2",
    "kitType":"BOTTLE"
}
Nested Schema : Resupply Types
Type: array
Title: Resupply Types
Resupply types.
Show Source
Example:
[
    {
        "resupplyName":"Primary",
        "resupplyType":"MINMAX"
    }
]
Nested Schema : DaysToRun
Type: object
Title: DaysToRun
Days to run inventory detail.
Show Source
Example:
{
    "sunday":false,
    "monday":true,
    "tuesday":true,
    "wednesday":true,
    "thursday":true,
    "friday":true,
    "saturday":false
}
Nested Schema : TimeToRun
Type: object
Title: TimeToRun
Time to run inventory detail.
Show Source
Example:
{
    "timeHour":2,
    "timeMinute":30,
    "timePeriod":"AM",
    "timeZone":"UTC"
}
Nested Schema : ResupplyType
Type: object
Title: ResupplyType
Contains resupply detail.
Show Source
Examples

500 Response

Internal server error
Body ()
Root Schema : ORSResponse
Type: object
Common response object.
Show Source
Nested Schema : ErrorResponseData
Type: object
Show Source
Nested Schema : result
Type: object
Result Object
Nested Schema : details
Type: object
Examples

Back to Top