We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This page catalogs known endpoints that deviate from the norm when using defaults.
Workaround: specify explicit accept header
headers = {'accept': "application/vnd.blackducksoftware.user-4+json"} items = bd.get_resource('dormantUsers', headers=headers)
Workaround: specify a sort order
url = f"/api/journal/projects/{projectId}/versions/{versionId}" params = {'sort': "timestamp ASC"} events = list(bd.get_items(url, page_size=1000, params=params))