delete https://api.betatest.degreed.com/api/v2/bundles//relationships/resources
Body Parameters
- id
Required. ID of the resource that will be removed from the bundle.- type
Type of object that will be removed as a relationship. Can bepathways
,groups
,content/videos
,content/articles
,content/books
,content/courses
,content/assessments
.Refer to the example request below.
curl https://api.degreed.com/api/v2/bundles/<ID>/relationships/resources
-H "Content-Type: application/json"
-H "Authorization: Bearer <access_token>"
-X DELETE
-d '{ \
"data": [ \
{ \
"id": "64rrL" \
"type": "content/videos" \
}, \
{ \
"id": "8oWW3" \
"type": "groups" \
} \
] \
}'