v1.0

get

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

Searches for shipments associated with a study by study ID. Rights: OrsInventoryGet, OrsUnblinded, BlindedDepot.

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:
    C36A3197FDEE433FB5547EE83DE99E4B
Query Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : ViewShipmentResponse
Type: object
Title: ViewShipmentResponse
Contains shipments search result.
Show Source
Nested Schema : Shipments
Type: array
Title: Shipments
Shipments list.
Show Source
Example:
[
    {
        "shipmentId":"SHIP-0001",
        "siteId":"B1B8327AFAA6412287106192AB5984EF",
        "siteName":"Site 001",
        "depotId":"C36A3197FDEE433FB5547EE83DE99E4B",
        "depotName":"Main Depot",
        "statusId":1,
        "shipmentNumber":"00012345",
        "createdDate":"2025-01-01T12:00:00Z",
        "shipDate":"2025-01-02T09:30:00Z",
        "trackingNumber":"1Z999AA10123456784"
    }
]
Nested Schema : ShipmentTO
Type: object
Show Source
Nested Schema : Kit Counts By Status ID
Type: object
Title: Kit Counts By Status ID
Additional Properties Allowed
Show Source
  • Title: Kit Counts By Status ID
    Map of kit counts grouped by status ID.
Map of kit counts grouped by status ID.
Examples

404 Response

'Invalid study ID', 'Study still in design phase'
Body ()
Root Schema : DesignerResponse
Type: object
Show Source
Nested Schema : ErrorResponseData
Type: object
Show Source
Nested Schema : result
Type: object
Nested Schema : details
Type: object
Examples

500 Response

Internal server error
Body ()
Root Schema : DesignerResponse
Type: object
Show Source
Nested Schema : ErrorResponseData
Type: object
Show Source
Nested Schema : result
Type: object
Nested Schema : details
Type: object
Examples

Back to Top