[Deprecated]: v1.0

get

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

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

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
  • Maximum number of records to display per page.
    Default Value: 100
    Example:
    100
  • An order number to specify with which object you want to start retrieving result. If provided, you also need to specify a value for the limit parameter.
    Default Value: 0
    Example:
    0
  • Search string.
    Example:
    SHIP-
  • Site ID.
    Example:
    B1B8327AFAA6412287106192AB5984EF
  • Unique ID corresponding to each Order status value (1 for PENDING, 2 for IN TRANSIT, 3 for RECEIVED, 4 for CANCELLED, 5 for LOST, 6 for CONFIRMED, 7 for INVALID, 8 for PENDING DESTRUCTION, 9 for RECEIVED FOR DESTRUCTION, 10 for DESTROYED).
    Example:
    1

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
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 : result
Type: object
Nested Schema : Object
Type: object
Title: Object
Object with error details information.
Examples

500 Response

Internal server error
Body ()
Root Schema : DesignerResponse
Type: object
Show Source
Nested 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 : result
Type: object
Nested Schema : Object
Type: object
Title: Object
Object with error details information.
Examples

Back to Top