Endpoint
projects
Allows a user to retrieve all projects associated with the specified API key. API keys are unique to each user and account.
Type
GET
Request Parameters
None
Responses
-
200 OK: Successfully retrieved the list of projects -
404 Not Found: No project found
The response is a JSON array of objects with details of the projects associated to the api key.
Example Request
curl --location 'https://intermx-test.apigee.net/v1/cohorts/search' \
--header 'apikey: {YOUR API KEY HERE}'Example Response
{
"pagination": {
"total": 1,
"found": 1,
"page": 1,
"perPage": 1000,
"pageSize": 1
},
"projects": [
{
"_id": "67f93188127def0013f5bb79",
"name": "Boardwalk 2024",
"createdAt": "2025-04-11T15:13:12.142Z",
"updatedAt": "2025-04-14T22:18:11.773Z"
}
]
}