Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/printnode/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,15 @@
title: PrintNode
sort: 3
---

## Available Documentation

- [Overview](overview.md) - Introduction to PrintNode integration
- [API](api.md) - Working with the PrintNode API client
- [Entities](entities.md) - PrintNode entity models
- [Computer Service](computer-service.md) - Managing computers
- [Printer Service](printer-service.md) - Managing printers
- [PrintJob Service](printjob-service.md) - Managing print jobs
- [Print Task](print-task.md) - Creating print tasks
- [Whoami Service](whoami-service.md) - Account information
- [Integrator Accounts](integrator-accounts.md) - Managing child accounts for multi-tenant applications
10 changes: 10 additions & 0 deletions docs/printnode/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,16 @@ $client->printers->all();

More information about each service can be found on that service's doc page.

### Available Services

The PrintNode client provides the following services:

- `accounts` - Manage child accounts (Integrator accounts only)
- `computers` - Manage computers
- `printers` - Manage printers
- `printJobs` - Manage print jobs
- `whoami` - Get account information

## Resources

A resource class represents some kind of resource retrieved from the PrintNode API, such as a printer or computer. When the `Printing` facade is used, the PrintNode entity objects will contain a reference to their relevant api resource objects as well.
Expand Down
Loading