Create print (JSON)

Create print (base64 JSON)

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

Create print (base64 JSON)

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/json" \  -H "Content-Type: application/json" \  -d '{    "raw": "string"  }'
{
  "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"
}