GET
/
v1
/
projects
/
{id}
/
components
curl --request GET \
  --url https://api.edgee.app/v1/projects/{id}/components \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "url": "<string>",
  "has_more": true,
  "last_key": "<string>",
  "data": [
    {
      "object": "project_component",
      "id": "<string>",
      "component_id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
      "component_slug": "edgee/google-analytics",
      "component_version": "1.0.0",
      "category": "data_collection",
      "subcategory": "analytics",
      "active": true,
      "settings": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token. More info here

Path Parameters

id
string
required

Query Parameters

category
enum<string>

Filter components by category.

Available options:
data_collection
subcategory
enum<string>

Filter components by sub category.

Available options:
analytics,
warehouse,
attribution,
conversion api

Response

200
application/json
A list of Project Components
object
string

String representing the object’s type. Objects of the same type share the same value.

Example:

"list"

url
string

The URL where this list can be accessed.

has_more
boolean

Whether there are more objects beyond the ones returned. You can use it to decide whether to show the user a “load more” button, for example.

last_key
string

The last key of the list. You can use its value on the start_key parameter to fetch the next page of the list.

data
object[]

A Project Component object represents an integration of a component in a project.