Care Plan
APIs for working with patient care plan: overview and goals
Get list of tasks related to goal
HTTP Request
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId}/tasks
2. In our example it would be:
GET https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan/goals/57827fdb-d240-46f9-8e6a-a89441cf8718/tasks
Responses
200
Created
401
Unauthorized
403
Forbidden
404
Not Found
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the care plan goal
Tasks for this goal
POINT_OF_CONTACTPossible values: Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId}/tasks HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdBy": "123e4567-e89b-12d3-a456-426614174000",
"updatedBy": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"updatedByName": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z",
"name": "text",
"description": "text",
"dueDate": "2026-01-01T00:00:00.000Z",
"status": "TODO",
"priority": "LOW",
"patient": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
},
"assignee": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
},
"watchers": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
}
],
"comments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2026-01-01T00:00:00.000Z",
"author": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
},
"text": "text",
"patient": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
},
"user": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
}
}
],
"goalId": "123e4567-e89b-12d3-a456-426614174000",
"templateName": "text",
"createdType": "AUTOMATION",
"sourceId": "123e4567-e89b-12d3-a456-426614174000",
"sourceType": "ASSESSMENT",
"hiddenPhi": true,
"watchersType": "POINT_OF_CONTACT"
}
]Add custom task to goal
HTTP Request
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId}/tasks
2. In our example it would be:
GET https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan/goals/57827fdb-d240-46f9-8e6a-a89441cf8718/tasks
Responses
200
Created
401
Unauthorized
403
Forbidden
404
Not Found
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the care plan goal
POINT_OF_CONTACTPossible values: Task created under this goal
POINT_OF_CONTACTPossible values: Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
POST /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId}/tasks HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 776
{
"name": "text",
"description": "text",
"dueDate": "2026-01-01T00:00:00.000Z",
"status": "TODO",
"priority": "LOW",
"patient": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
},
"assignee": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
},
"watchers": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
}
],
"comments": [
{
"author": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
},
"text": "text",
"patient": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
},
"user": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
}
}
],
"templateName": "text",
"createdType": "AUTOMATION",
"sourceId": "123e4567-e89b-12d3-a456-426614174000",
"sourceType": "ASSESSMENT",
"hiddenPhi": true,
"watchersType": "POINT_OF_CONTACT"
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdBy": "123e4567-e89b-12d3-a456-426614174000",
"updatedBy": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"updatedByName": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z",
"name": "text",
"description": "text",
"dueDate": "2026-01-01T00:00:00.000Z",
"status": "TODO",
"priority": "LOW",
"patient": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
},
"assignee": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
},
"watchers": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
}
],
"comments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2026-01-01T00:00:00.000Z",
"author": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
},
"text": "text",
"patient": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
},
"user": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
}
}
],
"goalId": "123e4567-e89b-12d3-a456-426614174000",
"templateName": "text",
"createdType": "AUTOMATION",
"sourceId": "123e4567-e89b-12d3-a456-426614174000",
"sourceType": "ASSESSMENT",
"hiddenPhi": true,
"watchersType": "POINT_OF_CONTACT"
}Get list of comments related to goal
HTTP Request
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId}/comments
2. In our example it would be:
GET https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan/goals/57827fdb-d240-46f9-8e6a-a89441cf8718/comments
Responses
200
Created
401
Unauthorized
403
Forbidden
404
Not Found
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the care plan goal
Comments for this goal
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId}/comments HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedByName": "text",
"updatedAt": "2026-01-01T00:00:00.000Z",
"text": "text"
}
]Add comment to goal
HTTP Request
POST /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId}/comments
in our example it would be:
POST https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan/goals/57827fdb-d240-46f9-8e6a-a89441cf8718/comments
Responses
201
Created
401
Unauthorized
403
Forbidden
404
Not Found
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the care plan goal
Comment created on this goal
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
POST /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId}/comments HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"text": "text"
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedByName": "text",
"updatedAt": "2026-01-01T00:00:00.000Z",
"text": "text"
}Get goals list without additional entity (tasks, comments), can be filtered by status.
HTTP Request
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals
2. In our example it would be:
GET https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan/goals
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
Single status or list
ACTIVE,REMOVED,COMPLETEDPage Index
0Page Size
20Paginated list of goals. Note: there is no flat status query param in the backend — filtering by status requires the generic filter mechanism (filters/jsonFilters with fieldsPath=["status"]).
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"createdAt": "text",
"updatedByName": "text",
"updatedAt": "text",
"name": "text",
"type": "text",
"priority": "LOW",
"status": "ACTIVE",
"templateName": "text"
}
],
"metaInfo": {
"page": 1,
"pageSize": 1,
"totalElements": 1,
"numberOfElements": 1
}
}Create goal for patient by goal-template
HTTP Request
POST /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals
2. In our example it would be:
POST https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan/goals
Parameters
patientId
path
ID of patient
Yes
UUID
tenantName
path
Name of tenant
Yes
string
instanceName
path
Name of instance
Yes
string
dto
body
dto
Yes
json
Responses
201
Created
401
Unauthorized
403
Forbidden
404
Not Found
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
Goal created
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
POST /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 27
{
"goalTemplateName": "text"
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"createdAt": "text",
"updatedByName": "text",
"updatedAt": "text",
"name": "text",
"type": "text",
"priority": "LOW",
"status": "ACTIVE",
"templateName": "text"
}Get extended goal view: details, tasks, comments.
HTTP Request
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId}
2. In our example it would be:
GET https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan/goals/57827fdb-d240-46f9-8e6a-a89441cf8718
Parameters
patientId
path
ID of patient
Yes
UUID
goalId
path
ID of goal
Yes
UUID
tenantName
path
Name of tenant
Yes
string
instanceName
path
Name of instance
Yes
string
Responses
200
OK
401
Unauthorized
403
Forbidden
404
Not Found
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the care plan goal
Goal with its tasks and comments
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId} HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"details": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"createdAt": "text",
"updatedByName": "text",
"updatedAt": "text",
"name": "text",
"type": "text",
"priority": "LOW",
"status": "ACTIVE",
"templateName": "text"
},
"tasks": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdBy": "123e4567-e89b-12d3-a456-426614174000",
"updatedBy": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"updatedByName": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z",
"name": "text",
"description": "text",
"dueDate": "2026-01-01T00:00:00.000Z",
"status": "TODO",
"priority": "LOW",
"patient": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
},
"assignee": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
},
"watchers": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
}
],
"comments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdAt": "2026-01-01T00:00:00.000Z",
"author": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"enabled": true
},
"text": "text",
"patient": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
},
"user": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text"
}
}
],
"goalId": "123e4567-e89b-12d3-a456-426614174000",
"templateName": "text",
"createdType": "AUTOMATION",
"sourceId": "123e4567-e89b-12d3-a456-426614174000",
"sourceType": "ASSESSMENT",
"hiddenPhi": true,
"watchersType": "POINT_OF_CONTACT"
}
],
"comments": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedByName": "text",
"updatedAt": "2026-01-01T00:00:00.000Z",
"text": "text"
}
]
}Update goal details: name, status, priority.
HTTP Request
PATCH /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId}
2. In our example it would be:
PATCH https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan/goals/57827fdb-d240-46f9-8e6a-a89441cf8718
Parameters
patientId
path
ID of patient
Yes
UUID
goalId
path
ID of goal
Yes
UUID
tenantName
path
Name of tenant
Yes
string
instanceName
path
Name of instance
Yes
string
dto
body
dto
Yes
json
Responses
200
OK
401
Unauthorized
403
Forbidden
404
Not Found
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
UUID of the care plan goal
Updated goal
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
PATCH /{tenantName}/{instanceName}/patients/{patientId}/care-plan/goals/{goalId} HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 86
{
"name": "text",
"type": "text",
"priority": "LOW",
"status": "ACTIVE",
"templateName": "text"
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"createdAt": "text",
"updatedByName": "text",
"updatedAt": "text",
"name": "text",
"type": "text",
"priority": "LOW",
"status": "ACTIVE",
"templateName": "text"
}HTTP Request
POST /{tenantName}/{instanceName}/patients/{patientId}/care-plan/overview
2. In our example it would be:
POST https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan/overview
Parameters
patientId
path
ID of patient
Yes
UUID
tenantName
path
Name of tenant
Yes
string
instanceName
path
Name of instance
Yes
string
Responses
200
OK
201
Created
401
Unauthorized
403
Forbidden
404
Not Found
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
Patient overview created/updated
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
POST /{tenantName}/{instanceName}/patients/{patientId}/care-plan/overview HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 19
{
"overview": "text"
}{
"createdByName": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedByName": "text",
"updatedAt": "2026-01-01T00:00:00.000Z",
"overview": "text"
}Update patient overview
HTTP Request
PUT /{tenantName}/{instanceName}/patients/{patientId}/care-plan/overview
2. In our example it would be:
PUT https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan/overview
Parameters
patientId
path
ID of patient
Yes
UUID
tenantName
path
Name of tenant
Yes
string
instanceName
path
Name of instance
Yes
string
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
Patient overview updated
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
PUT /{tenantName}/{instanceName}/patients/{patientId}/care-plan/overview HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 19
{
"overview": "text"
}{
"createdByName": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedByName": "text",
"updatedAt": "2026-01-01T00:00:00.000Z",
"overview": "text"
}Get overview and system fields
HTTP Request
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan
2. In our example it would be:
GET https://api.live.welkincloud.io/gh/sb-demo/patients/d6ea79ce-d3d6-4c2d-a27e-e4d1207f60f1/care-plan
Parameters
patientId
path
ID of patient
Yes
UUID
tenantName
path
Name of tenant
Yes
string
instanceName
path
Name of instance
Yes
string
Responses
200
OK
401
Unauthorized
403
Forbidden
404
Not Found
Bearer token obtained from POST /{tenantName}/admin/api_clients/{clientName}. Valid for 60 minutes.
Your organization (tenant) name, e.g. acme-health
acme-healthYour environment name: live, sandbox, or a custom name
liveUUID of the patient record
Patient care plan
Bad request — the request could not be understood or was missing required parameters.
Unauthorized — the Bearer token is missing, expired, or invalid.
Forbidden — the API client role does not have permission for this resource. Check the role and security policy in Admin.
Not found — the requested resource does not exist.
Too many requests — rate limit exceeded. Implement exponential backoff.
Internal server error.
GET /{tenantName}/{instanceName}/patients/{patientId}/care-plan HTTP/1.1
Host: api.live.welkincloud.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"createdByName": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedByName": "text",
"updatedAt": "2026-01-01T00:00:00.000Z",
"patientId": "123e4567-e89b-12d3-a456-426614174000",
"patientOverview": {
"createdByName": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedByName": "text",
"updatedAt": "2026-01-01T00:00:00.000Z",
"overview": "text"
}
}Last updated
Was this helpful?