v1.0

get

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

Retrieves all details of the DND Exceptions. Rights: DispensationExceptionGet.

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:
    B1B8327AFAA6412287106192AB5984EF

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation
Body ()
Root Schema : DNDExceptionsResponse
Type: object
Title: DNDExceptionsResponse
Response object containing list of DND exceptions.
Show Source
Nested Schema : dndExceptions
Type: array
Show Source
Example:
[
    {
        "dndExceptionId":"B1B8327AFAA6412287106192AB5984EF",
        "kitTypeSrcId":[
            "6AF54DB79B764662B685D68C52AB0B84"
        ],
        "allCountries":false,
        "countries":[
            "US"
        ],
        "siteIds":[
            "ABC8327AFAA6412287106192AB5984EF"
        ],
        "visitDND":[
            {
                "visitSrcId":"B1B8327AFAA6412287106192AB5984EF",
                "dnd":2
            }
        ]
    }
]
Nested Schema : DNDExceptionListResponse
Type: object
Title: DNDExceptionListResponse
Response object containing DND exceptions details.
Show Source
Nested Schema : Countries
Type: array
Title: Countries
Unique Items Required: true
ISO codes of countries.
Show Source
Example:
[
    "IN",
    "US"
]
Nested Schema : Kit Type Source IDs
Type: array
Title: Kit Type Source IDs
Unique Items Required: true
List of kit type source IDs.
Show Source
  • Title: Kit Type Source IDs
    List of kit type source IDs.
    Example: ["B1B8327AFAA6412287106192AB5984EF","ABC8327AFAA6412287106192AB5984EF"]
Example:
[
    "B1B8327AFAA6412287106192AB5984EF",
    "ABC8327AFAA6412287106192AB5984EF"
]
Nested Schema : Site IDs
Type: array
Title: Site IDs
Unique Items Required: true
List of site IDs.
Show Source
  • Title: Site IDs
    List of site IDs.
    Example: ["B1B8327AFAA6412287106192AB5984EF","ABC8327AFAA6412287106192AB5984EF"]
Example:
[
    "B1B8327AFAA6412287106192AB5984EF",
    "ABC8327AFAA6412287106192AB5984EF"
]
Nested Schema : visitDND
Type: array
Show Source
Nested Schema : VisitDND v1.0
Type: object
Title: VisitDND v1.0
Request to create a new VisitDND.
Show Source
Examples

400 Response

Dispensation logic (dynamic DND) request is not valid
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

404 Response

Invalid study ID or version
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