aggregator
/api/v1/aggregator/dashboard/export
GET
/api/v1/aggregator/dashboard/export
const url = 'https://dpg.example.com/api/v1/aggregator/dashboard/export?status=new&refresh=true';const options = { method: 'GET', headers: {'x-acting-org-id': 'example', 'x-api-key': '<x-api-key>'}};
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://dpg.example.com/api/v1/aggregator/dashboard/export?status=new&refresh=true' \ --header 'x-acting-org-id: example' \ --header 'x-api-key: <x-api-key>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”domain
string
status
string
q
string
refresh
string
Header Parameters
Section titled “Header Parameters”x-acting-org-id
required
string
Organization this request acts on behalf of. Required for admin/aggregator operations.
Responses
Section titled “Responses”Default Response

