GET
/
api
/
{projectId}
/
raw-data
/
metadata-filter-options
Get project sample metadata filter options
curl --request GET \
  --url https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/metadata-filter-options \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "error": "<string>",
  "totalCount": 123,
  "count": 123,
  "optionsList": [
    {
      "key": "locationId",
      "options": [
        "buildingA",
        "buildingB"
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

projectId
integer
required

Project ID

Query Parameters

category
enum<string>
required

Which of the three acquisition categories to retrieve data from

Available options:
training,
testing,
post-processing
limit
integer

Maximum number of results

offset
integer

Offset in results, can be used in conjunction with LimitResultsParameter to implement paging.

Response

200 - application/json

OK

The response is of type object.