API calls related to registration form objects:
Return a single registration_form
GET /api/v1/vaults/<vault_id>/registration_forms/<id>
Return a list of accessible registration_forms for the given vault.
GET /api/v1/vaults/<vault_id>/registration_forms
Example:
curl -H "X-CDD-Token: $TOKEN" https://app.collaborativedrug.com/api/v1/vaults/489978881/registration_forms
Returns:
{
"count": 2,
"page_size": 10,
"offset": 0,
"objects": [
{
"id": 108463874,
"class": "registration form",
"name": "Structure",
"registration_type": "CHEMICAL_STRUCTURE",
"allow_new_molecules": true,
"created_at": "2022-03-15T18:15:56.000Z",
"modified_at": "2022-05-11T15:01:10.000Z"
},
{
"id": 108463875,
"class": "registration form",
"name": "Amino Acid",
"registration_type": "AMINO_ACID",
"allow_new_molecules": true,
"created_at": "2022-03-15T18:15:56.000Z",
"modified_at": "2022-05-11T15:01:10.000Z"
}
]
}