reminix.client.Project¶
- class reminix.client.Project[source]¶
Bases:
objectOperations for project.
- __init__(client)[source]¶
Initialize Project operations.
- Parameters:
client (
Client) – The Reminix client instance- Return type:
None
Methods
- __init__(client)[source]¶
Initialize Project operations.
- Parameters:
client (
Client) – The Reminix client instance- Return type:
None
- async get()[source]¶
Get current project.
Returns the project associated with the API key used for authentication.
The project contains metadata about your organization’s configuration, including: - Project ID and organization ID - Project name and slug - Creation and update timestamps
This endpoint is useful for verifying your API key is valid and retrieving project details.
- Returns:
Project found
- Return type:
Example:
result = await client.project.get() print(result)
- Raises:
AuthenticationError – Unauthorized - Invalid or missing API key
APIError – Project not found
NetworkError – If a network error occurs
- Return type:
Project