POST /v3/data-sources/search
This endpoint retrieves all the data sources in the account with their labels.
Security
API_Key
POST
curl -i -X POST \
'https://api.observepoint.com/v3/data-sources/search?page=0&pageSize=100&sortBy=itemName&sortDesc=false' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"itemName": "string",
"labelIds": [
0
],
"itemIds": [
0
],
"itemType": "audit",
"withRuns": true
}'Response
{ "metadata": { "pagination": { … } }, "dataSources": [ { … } ] }