curl --request GET \
--url https://api.debbiecollect.com/v1/{tenantId}/updates/types \
--header 'Authorization: Bearer <token>'
[
{
"updateTypeId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "2023-11-07T05:31:56Z",
"procedure": [
"<any>"
],
"procedureEnabled": true,
"referenceType": "CASE",
"selectable": true,
"public": true,
"knowledgeBaseUrls": "<any>",
"priority": 123,
"label": "<string>",
"description": "<string>",
"pausing": true,
"groupId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"groupLabel": "<string>",
"important": true,
"importantTheme": "<string>",
"responsiblePermissionLevel": "client",
"hiddenPermissionLevel": "client",
"pauseWithUpdateOnCaseExit": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"continueOnCaseExit": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"introductionHeroFile": {
"fileName": "<string>",
"contentType": "<string>",
"fileId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"introductionHTML": "<string>"
}
]
Get update types
curl --request GET \
--url https://api.debbiecollect.com/v1/{tenantId}/updates/types \
--header 'Authorization: Bearer <token>'
[
{
"updateTypeId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "2023-11-07T05:31:56Z",
"procedure": [
"<any>"
],
"procedureEnabled": true,
"referenceType": "CASE",
"selectable": true,
"public": true,
"knowledgeBaseUrls": "<any>",
"priority": 123,
"label": "<string>",
"description": "<string>",
"pausing": true,
"groupId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"groupLabel": "<string>",
"important": true,
"importantTheme": "<string>",
"responsiblePermissionLevel": "client",
"hiddenPermissionLevel": "client",
"pauseWithUpdateOnCaseExit": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"continueOnCaseExit": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"introductionHeroFile": {
"fileName": "<string>",
"contentType": "<string>",
"fileId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
},
"introductionHTML": "<string>"
}
]
Authentication can be done by using a bearer token in the Authorization header. This is done using the following format Authorization: Bearer {token}
.
Id of the tenant the update is related to
Successful operation
The response is of type object[]
.