Added Card Lists
This commit is contained in:
@@ -26,3 +26,37 @@ Content-Type: application/json
|
||||
|
||||
### Delete a card
|
||||
DELETE {{SDG_Backend_Barracuda_HostAddress}}/card/1
|
||||
|
||||
|
||||
### Create a new empty card list
|
||||
POST {{SDG_Backend_Barracuda_HostAddress}}/cardlist/
|
||||
Content-Type: application/json
|
||||
|
||||
### Create a new card list with cards and sub-lists
|
||||
POST {{SDG_Backend_Barracuda_HostAddress}}/cardlist
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"cardIds": [3, 2],
|
||||
"subListIds": [4]
|
||||
}
|
||||
|
||||
### Get all card lists
|
||||
GET {{SDG_Backend_Barracuda_HostAddress}}/cardlist
|
||||
Accept: application/json
|
||||
|
||||
### Get a card list by ID (includes cards and sub-lists)
|
||||
GET {{SDG_Backend_Barracuda_HostAddress}}/cardlist/1
|
||||
Accept: application/json
|
||||
|
||||
### Update a card list
|
||||
PUT {{SDG_Backend_Barracuda_HostAddress}}/cardlist/1
|
||||
Content-Type: application/json
|
||||
|
||||
{
|
||||
"cardIds": [4],
|
||||
"subListIds": []
|
||||
}
|
||||
|
||||
### Delete a card list
|
||||
DELETE {{SDG_Backend_Barracuda_HostAddress}}/cardlist/1
|
||||
|
||||
Reference in New Issue
Block a user