Search prints

Search workspace prints

POST
/api/workspace/{slug}/prints/search

Search workspace prints

Path Parameters

slug*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/workspace/string/prints/search" \  -H "Content-Type: application/json" \  -d '{}'
{
  "items": [
    {
      "id": 0,
      "printKey": "string",
      "workspaceId": 0,
      "userId": 0,
      "deviceId": "string",
      "label": "string",
      "tag": {
        "property1": "string",
        "property2": "string"
      },
      "quantity": 0,
      "width": 0,
      "testPrint": true,
      "deleted": true,
      "deletedAt": "string",
      "createdAt": "string",
      "updatedAt": "string"
    }
  ],
  "total": 0,
  "page": 0,
  "pageSize": 0,
  "totalPage": 0,
  "hasNext": true,
  "hasPrev": true
}