Quickstart
1. Creating an API Access Token
Navigate to https://wb.workist.com/customer/integrations/api-integrations in the Workbench and create your own token under "API Integrations".
2. Sending Your First Request
- Open the Swagger UI: https://api.workist.com/v1/swagger/
- Click "Authorize" and paste your token from step 1
- Test the API with
GET /orders/
3. Authentication
The Workist API uses Bearer token authentication.
Authorization: Bearer <your token>
4. Request Flow
- Upload an order, e.g. via
POST /ordersor through the Workbench - Wait for the AI to process the document
- Retrieve all orders ready for import:
GET /orders?imported=False&finished=True
- For each order:
- a) Process on your side (e.g. import into ERP system)
- b) Mark as imported with
PUT /orders/{id}/mark_imported/
Master Data API
For transferring master data via API, see Using the Master Data API.