Information submitted through the support site is private but is not hosted within your secure CDD Vault. Please do not include sensitive intellectual property in your support requests.

Registration System(s) [GET]

API calls related to registration system objects:

Return a single registration_system
 

GET /api/v1/vaults/<vault_id>/registration_systems/<id>

 

Return a list of accessible registration_systems for the given vault.

GET /api/v1/vaults/<vault_id>/registration_systems


Example:
 

curl -H "X-CDD-Token: $TOKEN" https://app.collaborativedrug.com/api/v1/vaults/489978881/registration_systems


Returns:
 

{
  "count": 1,
  "page_size": 10,
  "offset": 0,
  "objects": [
    {
      "id": 10846355,
      "class": "registration system",
      "prefix": "BGS"
    }
  ]
}