List data with "imported from" metadata key

List data with "imported from" metadata key

Lists all data with an 'imported from' metadata key. Used to check in a data source which items are already in a project.

get

/api/{projectId}/raw-data/imported-from

Authorizations
Path parameters
projectIdintegerrequired

Project ID

Query parameters
limitinteger

Maximum number of results

offsetinteger

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

Responses
curl -L \
  --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/imported-from' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "success": true,
  "error": "text",
  "data": [
    {
      "id": 1,
      "category": "text",
      "importedFrom": "text"
    }
  ]
}

Last updated

Was this helpful?