Export Bill of Materials
GET
/v1/reporting/bill-of-materials
const url = 'https://example.com/api/v1/reporting/bill-of-materials';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/reporting/bill-of-materials \ --header 'Authorization: <Authorization>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Text/csv
Media type application/json
string
Example generated
example