Plytix
EndpointsEcatalogs

Create-Ecatalogs

POST
/api/v3/ecatalogs

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Input DTO for creating an eCatalog.

Response Body

application/json

application/json

curl -X POST "https://example.com/api/v3/ecatalogs" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "data": {    "id": "stringstringstringstring",    "account_id": "stringstringstringstring",    "name": "string",    "logo": "string",    "product_list_id": "stringstringstringstring",    "asset_list_id": "stringstringstringstring",    "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"      }    ],    "settings": {},    "is_public": true,    "password_required": true,    "data_sheet_active": true,    "pds_active": true,    "pdf_active": true,    "quote_active": true,    "specification_sheet_active": true,    "price_list_active": true,    "pds_template_id": "string",    "price_list_id": "stringstringstringstring",    "specification_sheet_id": "stringstringstringstring",    "pdf_catalog_id": "stringstringstringstring",    "exportable_attributes": [      "string"    ],    "notification_list": [      {        "email": "string",        "datasheet_downloads": false,        "pdf_downloads": false,        "quotes": false      }    ],    "quote_request_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"      }    ],    "notification_active": true,    "created": "2019-08-24T14:15:22Z",    "modified": "2019-08-24T14:15:22Z"  },  "errors": [    {      "name": "string",      "description": "string"    }  ],  "pagination": {    "next_page": "string",    "previous_page": "string"  }}