Skip to content

Commit

Permalink
docs: 📝 added docs about PrintOne.getCsvOrder
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRill00 committed Mar 7, 2024
1 parent 0be83a9 commit 0860e70
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions docs/PrintOne.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,3 +279,24 @@ const order = await client.createCsvOrder({
file: file,
});
```

---

## `.getCsvOrder(id)`

Get a csv order by its ID.

**Parameters**

| Name | Type | Description |
| ---- | -------- | ------------------------------- |
| `id` | `string` | The ID of the csv order to get. |

**Returns: [`Promise<CsvOrder>`](./CsvOrder)**

**Example**

```js
const csvOrder = await client.getCsvOrder("example-order-id");
```
```

0 comments on commit 0860e70

Please sign in to comment.