Skip to content

Commit 8a2bb4e

Browse files
committed
PR feedback
1 parent 3216716 commit 8a2bb4e

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

gusto_embedded/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Gusto API: Welcome to Gusto's Embedded Payroll API documentation!
2222
* [gusto](#gusto)
2323
* [SDK Installation](#sdk-installation)
2424
* [IDE Support](#ide-support)
25-
* [SDK Example Usage](#sdk-example-usage)
25+
* [Example Usage](#example-usage)
2626
* [Authentication](#authentication)
2727
* [Available Resources and Operations](#available-resources-and-operations)
2828
* [File uploads](#file-uploads)
@@ -106,8 +106,7 @@ Generally, the SDK will work well with most IDEs out of the box. However, when u
106106
- [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)
107107
<!-- End IDE Support [idesupport] -->
108108

109-
<!-- No SDK Example Usage [usage] -->
110-
## SDK Example Usage
109+
## Example Usage
111110

112111
### Example
113112

@@ -151,12 +150,12 @@ asyncio.run(main())
151150
```
152151

153152
### Common workflows
154-
A common workflow, as documented [here](https://docs.gusto.com/embedded-payroll/docs/onboard-a-company), is to create a
153+
A common workflow, as documented [in our docs](https://docs.gusto.com/embedded-payroll/docs/onboard-a-company), is to create a
155154
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.
155+
company. Then we will use the returned company access token for subsequent requests. We'll do this in the following steps.
157156
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]()
157+
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
158+
3. [Create a Company Location](https://docs.gusto.com/embedded-payroll/docs/onboard-a-company#3-create-a-company-location)
160159

161160
```python
162161
# Synchronous Example
@@ -172,11 +171,12 @@ system_gusto = Gusto()
172171
partner_managed_company_res = system_gusto.companies.create_partner_managed(
173172
security=security,
174173
user={
175-
"first_name": "Frank",
176-
"last_name": "Ocean",
177-
"email": "frank@example.com",
178-
"phone": "2345558899",
179-
}, company={
174+
"first_name": "Frank",
175+
"last_name": "Ocean",
176+
"email": "frank@example.com",
177+
"phone": "2345558899",
178+
},
179+
company={
180180
"name": "Frank's Ocean, LLC",
181181
"trade_name": "Frank’s Ocean",
182182
"ein": "123432989",

0 commit comments

Comments
 (0)