artifacts

List

GET
List the artifacts attached to an object.

Query parameters

parent_idstringOptional
The ID of the object to filter artifacts.

Response

This endpoint returns an object
artifacts
list of objects
The artifact's information.
GET
1curl https://api.devrev.ai/artifacts.list \
2 -H "Authorization: <apiKey>"
Response
1{
2 "artifacts": [
3 {
4 "id": "id",
5 "created_date": "2023-01-01T12:00:00Z",
6 "display_id": "display_id",
7 "modified_date": "2023-01-01T12:00:00Z"
8 }
9 ]
10}