Skip to main content
GET
/
sources
/
{sourceKey}
/
v1
/
resources
/
{resourceType}
/
{id}
/
{containKey}
/
{containedResourceId}
Get a contain resource from the registry
curl --request GET \
  --url https://{workspaceId}.clinia.cloud/sources/{sourceKey}/v1/resources/{resourceType}/{id}/{containKey}/{containedResourceId} \
  --header 'X-Clinia-API-Key: <api-key>'
{
  "id": "<string>",
  "type": "<string>",
  "meta": {
    "createdAt": "2023-11-07T05:31:56Z",
    "identifier": [
      {
        "id": "<string>",
        "system": "<string>",
        "value": "<string>",
        "use": "<string>",
        "period": {
          "id": "<any>",
          "start": "<any>",
          "end": "<any>"
        }
      }
    ],
    "source": "<string>",
    "updatedAt": "2023-11-07T05:31:56Z"
  },
  "data": {},
  "contained": {}
}

Authorizations

X-Clinia-API-Key
string
header
required

Path Parameters

sourceKey
string
required

The key of the source.

resourceType
string
required

Type of the resource. Key of the profile.

id
string
required

Id of the resource.

containKey
string
required

Key of the contained resource. This is the key of the profile that defines the contained resource type.

containedResourceId
string
required

Id of the contained resource.

Response

The contained resource with the given id.

id
string
required

Id of the resource.

type
string
required

Type of the resource.

data
object
required

Dynamic data attributes, based on the resource type.

meta
object
contained
object

Resources contained in this top-level resource. Contained resources exists only within the context of this top-level resource.

I