You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gusto_embedded/README.md
+67-4Lines changed: 67 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -149,6 +149,69 @@ async def main():
149
149
150
150
asyncio.run(main())
151
151
```
152
+
153
+
### Common workflows
154
+
A common workflow, as documented [here](https://docs.gusto.com/embedded-payroll/docs/onboard-a-company), is to create a
155
+
new partner managed company. In this section we will illustrate using a system access token to create a partner managed
156
+
company. Then use the returned company access token for further requests. We'll do this in the following steps.
157
+
1.[Create a Partner Managed Company](https://github.com/Gusto/gusto-python-client/blob/main/gusto_embedded/docs/sdks/companies/README.md#create_partner_managed)
158
+
2.[View](https://flows.gusto.com/terms) and [Accept](https://github.com/Gusto/gusto-python-client/blob/main/gusto_embedded/docs/sdks/companies/README.md#accept_terms_of_service) Terms of Service]
159
+
3.[Create a Company Location]()
160
+
161
+
```python
162
+
# Synchronous Example
163
+
from gusto_embedded import Gusto, PostV1PartnerManagedCompaniesSecurity
You can override the default server globally by passing a server name to the `server: str` optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the names associated with the available servers:
0 commit comments