artifacts

List Post

POST
List the artifacts attached to an object.

Request

This endpoint expects an object.
parent_id
stringOptional
The ID of the object to filter artifacts.

Response

This endpoint returns an object
artifacts
list of objects
The artifact's information.
POST
1curl -X POST https://api.devrev.ai/artifacts.list \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
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}