1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-26 05:37:27 +02:00
2024-08-14 09:06:31 +03:00

847 B

sidebar_position
2

Create product property

Creates a new property for use in products

Function CreateProductProperty(Val Name, Val Parameters = "") Export

Parameter CLI option Type Description
Name --title String Property name
Parameters --auth Structure Of String Authorization JSON or path to .json

Returns: Map Of KeyAndValue - Serialized JSON response from VK


    Parameters = GetVKParameters();

    Name = "Color";

    Result = OPI_VK.CreateProductProperty(Name, Parameters);
    
  oint vk CreateProductProperty --title "Color" --auth "GetVKParameters()"

{
  "response": {
  "property_id": 260
  }
  }