Service class for interacting with Tally workspace endpoints
Provides methods to create, read, update, delete and list Tally workspaces through the API.
All methods return a standardized response object with the structure { data, error }, where exactly one of data or error will be defined.
Remarks
This service is automatically instantiated by TallyClient - do not instantiate manually
All methods validate required parameters and throw a TallyInvalidRequestError if required parameters are missing
Responses follow the pattern: { data: T | null, error: TallyError | null }
HTTP errors are transformed into typed TallyError instances containing the error response from the API
The list method supports pagination through an optional page parameter
Service class for interacting with Tally workspace endpoints
Provides methods to create, read, update, delete and list Tally workspaces through the API. All methods return a standardized response object with the structure { data, error }, where exactly one of data or error will be defined.
Remarks
{ data: T | null, error: TallyError | null }