V7.0

get

/ec-designer-svc/rest/v7.0/studies/{studyId}/versions/{version}/arms/{armId}/dispensings

Retrieves dispensing assignments for a treatment arm in a study version. Each item identifies the kit and visit and includes dispensing settings such as quantity, do-not-dispense days, and whether dispensing outside the visit window is allowed.

Request

Path Parameters
Query Parameters
  • Type of kits requested. Optional. Allowed values: ALL, STANDARD, TITRATION, DEVICE.
    Default Value: ALL
    Example:
    ALL

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation.
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : RespArmKitVisitDto v7.0
Type: object
Title: RespArmKitVisitDto v7.0
Dispensing assignment returned for a treatment arm in a study version.
Show Source
Nested Schema : errorParamList
Type: array
Show Source
Nested Schema : titrationKits
Type: array
Show Source
Nested Schema : RespErrParamListDto v1.0
Type: object
Title: RespErrParamListDto v1.0
Validation error parameters returned with an API response.
Show Source
Example:
{
    "errorParamList":[
        {
            "key":"C2C8327AFAA6412287106192AB5984EF",
            "type":"Visit",
            "id":"D3D8327AFAA6412287106192AB5984EF",
            "name":"Week 5"
        }
    ]
}
Nested Schema : ErrorParam
Type: array
Show Source
Nested Schema : ErrorParam
Type: object
Title: ErrorParam
Validation parameter that identifies an object related to an API validation error.
Show Source
  • Related object ID (UUID, 32-character uppercase hexadecimal string).
  • Related object key (UUID, 32-character uppercase hexadecimal string).
  • Display name of the object related to the validation error.
    Example: Week 5
  • Type of object related to the validation error.
    Example: Visit
Example:
{
    "key":"C2C8327AFAA6412287106192AB5984EF",
    "type":"Visit",
    "id":"D3D8327AFAA6412287106192AB5984EF",
    "name":"Week 5"
}
Nested Schema : ArmKitVisitTitrationDto v7.0
Type: object
Title: ArmKitVisitTitrationDto v7.0
Kit included in a titration dispensing group.
Show Source
Examples

500 Response

Returned when the request cannot be completed due to validation failure, authorization failure, or an unexpected server-side condition.
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"
}
Back to Top