GET api/consumer/v1/workspaces/{workspaceId}/jobs/{jobId}/cards/{cardId}/checkList
Get all Check List of a card
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
workspaceId |
Workspace ID |
integer |
Required |
jobId |
Job ID |
integer |
Required |
cardId |
Card ID |
integer |
Required |
Body Parameters
None
Response Information
Resource Description
List of found check list
Collection of CheckListItemDtoName | Description | Type | Additional information |
---|---|---|---|
Owner |
Owner of element |
UserMinDto |
None |
IsCompleted |
If true element is completed, false otherwise |
boolean |
None |
IsPublic |
If true element is public, false otherwise |
boolean |
None |
Code |
The short code of the element |
string |
None |
Description |
The description of the element |
string |
None |
IsActive |
True if the element is active, false otherwise |
boolean |
None |
Permissions |
Permissions |
PermissionDto |
None |
CreationDate |
Creation |
date |
None |
CreatedBy |
The user who has made the insert |
UserMinDto |
None |
LastUpdateDate |
Date of the last update |
date |
None |
LastUpdatedBy |
The user who has made the last update |
UserMinDto |
None |
Id |
Unique ID |
integer |
None |
Response Formats
application/json, text/json
Sample:
[ { "Owner": { "Login": "sample string 1", "FullName": "sample string 2", "Avatar": "sample string 3", "Id": 4 }, "IsCompleted": true, "IsPublic": true, "Code": "sample string 3", "Description": "sample string 4", "IsActive": true, "Permissions": { "CanModify": true, "CanDelete": true }, "CreationDate": "2024-11-01T19:20:32.2685073+01:00", "CreatedBy": { "Login": "sample string 1", "FullName": "sample string 2", "Avatar": "sample string 3", "Id": 4 }, "LastUpdateDate": "2024-11-01T19:20:32.2685073+01:00", "LastUpdatedBy": { "Login": "sample string 1", "FullName": "sample string 2", "Avatar": "sample string 3", "Id": 4 }, "Id": 6 }, { "Owner": { "Login": "sample string 1", "FullName": "sample string 2", "Avatar": "sample string 3", "Id": 4 }, "IsCompleted": true, "IsPublic": true, "Code": "sample string 3", "Description": "sample string 4", "IsActive": true, "Permissions": { "CanModify": true, "CanDelete": true }, "CreationDate": "2024-11-01T19:20:32.2685073+01:00", "CreatedBy": { "Login": "sample string 1", "FullName": "sample string 2", "Avatar": "sample string 3", "Id": 4 }, "LastUpdateDate": "2024-11-01T19:20:32.2685073+01:00", "LastUpdatedBy": { "Login": "sample string 1", "FullName": "sample string 2", "Avatar": "sample string 3", "Id": 4 }, "Id": 6 } ]
application/xml, text/xml
Sample:
<ArrayOfCheckListItemDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Oryx.Web.Api.Models"> <CheckListItemDto> <Id>6</Id> <CreatedBy> <Id>4</Id> <Avatar>sample string 3</Avatar> <FullName>sample string 2</FullName> <Login>sample string 1</Login> </CreatedBy> <CreationDate>2024-11-01T19:20:32.2685073+01:00</CreationDate> <LastUpdateDate>2024-11-01T19:20:32.2685073+01:00</LastUpdateDate> <LastUpdatedBy> <Id>4</Id> <Avatar>sample string 3</Avatar> <FullName>sample string 2</FullName> <Login>sample string 1</Login> </LastUpdatedBy> <Code>sample string 3</Code> <Description>sample string 4</Description> <IsActive>true</IsActive> <Permissions> <CanDelete>true</CanDelete> <CanModify>true</CanModify> </Permissions> <IsCompleted>true</IsCompleted> <IsPublic>true</IsPublic> <Owner> <Id>4</Id> <Avatar>sample string 3</Avatar> <FullName>sample string 2</FullName> <Login>sample string 1</Login> </Owner> </CheckListItemDto> <CheckListItemDto> <Id>6</Id> <CreatedBy> <Id>4</Id> <Avatar>sample string 3</Avatar> <FullName>sample string 2</FullName> <Login>sample string 1</Login> </CreatedBy> <CreationDate>2024-11-01T19:20:32.2685073+01:00</CreationDate> <LastUpdateDate>2024-11-01T19:20:32.2685073+01:00</LastUpdateDate> <LastUpdatedBy> <Id>4</Id> <Avatar>sample string 3</Avatar> <FullName>sample string 2</FullName> <Login>sample string 1</Login> </LastUpdatedBy> <Code>sample string 3</Code> <Description>sample string 4</Description> <IsActive>true</IsActive> <Permissions> <CanDelete>true</CanDelete> <CanModify>true</CanModify> </Permissions> <IsCompleted>true</IsCompleted> <IsPublic>true</IsPublic> <Owner> <Id>4</Id> <Avatar>sample string 3</Avatar> <FullName>sample string 2</FullName> <Login>sample string 1</Login> </Owner> </CheckListItemDto> </ArrayOfCheckListItemDto>