Plytix
EndpointsPdfcatalogs

Create-Pdf-Catalogs

POST
/api/v3/pdf-catalogs

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Input DTO for creating a PDF catalog.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/v3/pdf-catalogs" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "data": {    "id": "stringstringstringstring",    "account_id": "stringstringstringstring",    "name": "string",    "logo": "string",    "output_attributes": [      {        "id": "string",        "label": "string",        "type": "string",        "source_type": "string",        "labels": [          "string"        ],        "formula": null,        "formatter": {},        "output_label": "string",        "formula_txt": "string",        "internal_name": "string"      }    ],    "assets": [      {        "uuid": "string",        "path": "string"      }    ],    "pages": [      {        "id": "string",        "page_type": "PRODUCTS",        "name": "string",        "thumb": "string",        "settings": {},        "frame": {},        "background_image": {},        "background_color": "string",        "width": 0,        "height": 0      }    ],    "settings": {      "page_size": "US_LETTER",      "orientation": "PORTRAIT"    },    "created": "2019-08-24T14:15:22Z",    "modified": "2019-08-24T14:15:22Z"  },  "errors": [    {      "name": "string",      "description": "string"    }  ],  "pagination": {    "next_page": "string",    "previous_page": "string"  }}