Feature Request: API endpoint for retrieving project information (/projects)
Hi Plunk team 👋
At the moment, there doesn’t seem to be an API endpoint that allows retrieving metadata about a project. For certain integrations and automation use cases, having access to project-level information via the API would be very useful.
Proposed solution
Introduce an endpoint such as:
or optionally:
GET /projects/{projectId}
Example use cases
- Programmatically retrieving the project name
- Accessing the configured default sender domain
- Verifying project configuration in multi-project setups
- Reducing manual configuration and hard-coded values in integrations
Example response (illustrative)
{
"id": "proj_123",
"name": "My Project",
"defaultSenderDomain": "example.com",
"createdAt": "2024-01-01T12:00:00Z"
}
Happy to provide more details or discuss the requirements if helpful.
Thanks for considering this feature!
Feature Request: API endpoint for retrieving project information (
/projects)Hi Plunk team 👋
At the moment, there doesn’t seem to be an API endpoint that allows retrieving metadata about a project. For certain integrations and automation use cases, having access to project-level information via the API would be very useful.
Proposed solution
Introduce an endpoint such as:
or optionally:
Example use cases
Example response (illustrative)
{ "id": "proj_123", "name": "My Project", "defaultSenderDomain": "example.com", "createdAt": "2024-01-01T12:00:00Z" }Happy to provide more details or discuss the requirements if helpful.
Thanks for considering this feature!