v1.0

get

/ec-ors-svc/rest/v1.0/studies/{studyId}/{mode}/lotsbykittype/sdfs/{sdfType}/{sdfId}

Retrieves Kit Type by lot for the site. Rights: LotManagementGet.

Request

Path Parameters
Query Parameters
  • Unique identifier (UUID, 32-character uppercase hexadecimal string) representing the clinical depot
    Example:
    8C7A6B5D4E3F2109876543210ABCDEF0

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : Kit Lot Details
Type: object
Title: Kit Lot Details
Contains kit types with lots information.
Show Source
Nested Schema : kitTypes
Type: array
Show Source
Example:
[
    {
        "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
        "lots":[
            {
                "quantity":10,
                "lotId":"1873CDF69E9B48B89B2D9E7951057D09",
                "effectiveExpirationDate":"2027-12-31T00:00:00Z",
                "lotName":"LOT-1001"
            }
        ]
    }
]
Nested Schema : Kit Type Lots
Type: object
Title: Kit Type Lots
Kit type with lots.
Show Source
Example:
[
    {
        "kitTypeSrcId":"B1B8327AFAA6412287106192AB5984EF",
        "lots":[
            {
                "quantity":10,
                "lotId":"1873CDF69E9B48B89B2D9E7951057D09",
                "effectiveExpirationDate":"2027-12-31T00:00:00Z",
                "lotName":"LOT-1001"
            }
        ]
    }
]
Nested Schema : lots
Type: array
Show Source
Example:
[
    {
        "quantity":10,
        "lotId":"1873CDF69E9B48B89B2D9E7951057D09",
        "effectiveExpirationDate":"2027-12-31T00:00:00Z",
        "lotName":"LOT-1001"
    }
]
Nested Schema : Lots
Type: object
Title: Lots
Contains lot details for kits.
Show Source
Example:
[
    {
        "quantity":10,
        "lotId":"1873CDF69E9B48B89B2D9E7951057D09",
        "effectiveExpirationDate":"2027-12-31T00:00:00Z",
        "lotName":"LOT-1001"
    }
]
Examples

403 Response

The study identifier does not match any study identifiers in Clinical One
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

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