Organization
toggl_api.OrganizationEndpoint
¶
Bases: TogglCachedEndpoint[TogglOrganization]
Endpoint to do with handling organization specific details.
Examples:
>>> org_endpoint = OrganizationEndpoint(BasicAuth(...), SqliteCache(...))
Parameters:
-
auth
(BasicAuth
) –Authentication for the client.
-
cache
(TogglCache[TogglOrganization]
) –Cache object where trackers are stored.
-
timeout
(int
, default:10
) –How long it takes for the client to timeout. Keyword Only. Defaults to 10 seconds.
-
re_raise
(bool
, default:False
) –Whether to raise HTTPStatusError errors and not handle them internally. Keyword Only.
-
retries
(int
, default:3
) –Max retries to attempt if the server returns a 5xx status_code. Has no effect if re_raise is
True
. Keyword Only.
Source code in toggl_api/organization.py
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
|
get(organization: TogglOrganization | int, *, refresh: bool = False) -> TogglOrganization | None
¶
Creates a new organization with a single workspace and assigns current user as the organization owner
Parameters:
-
organization
(TogglOrganization | int
) –Organization to retrieve.
-
refresh
(bool
, default:False
) –Whether to ignore cache completely.
Raises:
-
HTTPStatusError
–If any error except a '404' was received.
Returns:
-
TogglOrganization | None
–Organization object that was retrieve or None if not found.
Source code in toggl_api/organization.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
add(name: str, workspace_name: str = 'Default-Workspace') -> TogglOrganization
¶
Creates a new organization with a single workspace and assigns current user as the organization owner
Examples:
>>> org = organization_endpoint.add("New-Workspace")
>>> org.name
"New-Workspace"
Parameters:
-
name
(str
) –Name of the new orgnization.
-
workspace_name
(str
, default:'Default-Workspace'
) –Name of the default workspace in the organization. No space characters allowed.
Raises:
-
NamingError
–If any of the names are invalid or the wrong length.
-
HTTPStatusError
–If the request is not a success.
Returns:
-
TogglOrganization
–The newly created organization.
Source code in toggl_api/organization.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
|
edit(organization: TogglOrganization | int, name: str) -> TogglOrganization
¶
Updates an existing organization.
Parameters:
-
organization
(TogglOrganization | int
) –The id of the organization to edit.
-
name
(str
) –What name to change the org to.
Raises:
-
NamingError
–If the new name is invalid.
-
HTTPStatusError
–If the request is not a success.
Returns:
-
TogglOrganization
–The newly edited organization.
Source code in toggl_api/organization.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
|
collect(*, refresh: bool = False) -> list[TogglOrganization]
¶
Get all organizations a given user is part of.
Parameters:
-
refresh
(bool
, default:False
) –Whether to use cache or not.
Raises:
-
HTTPStatusError
–If the request is not a success.
Returns:
-
list[TogglOrganization]
–A list of organization objects or empty if none found.
Source code in toggl_api/organization.py
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
|
delete(organization: TogglOrganization | int) -> None
¶
Leaves organization, effectively delete user account in org and delete organization if it is last user.
Deletion might not be instant on the API end and might take a few seconds to propogate, so the object might appear in the 'get' or 'collect' method.
Parameters:
-
organization
(TogglOrganization | int
) –Organization to delete.
Raises:
-
HTTPStatusError
–If the response status_code is not '200' or '404'.
Source code in toggl_api/organization.py
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
|