Data Source Acknowledgement
Require data source status acknowledgement during review creation.
By default, when a review is created, a user can optionally view the status of the data sources involved in the review. This API allows the behavior to change, requiring that the data source status is shown to the user and acknowledged during review creation.
Parameters
Possible values are:
DATASOURCE_ACKNOWLEDGEMENT_UNKNOWN
= 0DATASOURCE_ACKNOWLEDGEMENT_NOT_SHOWN
= 1DATASOURCE_ACKNOWLEDGEMENT_REQUIRED
= 2
Get Data Source Acknowledgement Setting
Authorizations
Header parameters
AcceptstringOptionalExample:
application/json
Responses
200
OK
application/json
Responseobject
get
GET /api/private/workflows/access/global_settings/datasource_acknowledgement HTTP/1.1
Host: {{baseurl}}
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
{
"value": "DATASOURCE_ACKNOWLEDGEMENT_REQUIRED"
}
Set Data Source Acknowledgement Setting
Authorizations
Header parameters
Content-TypestringOptionalExample:
application/json
AcceptstringOptionalExample:
application/json
Body
objectOptionalExample:
{"value":"<integer>"}
Responses
200
OK
application/json
Responseobject
put
PUT /api/private/workflows/access/global_settings/datasource_acknowledgement HTTP/1.1
Host: {{baseurl}}
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 21
{
"value": "<integer>"
}
200
OK
{
"value": "DATASOURCE_ACKNOWLEDGEMENT_REQUIRED"
}
Last updated
Was this helpful?