1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-02-09 13:47:03 +02:00

41 lines
711 B
Markdown
Raw Normal View History

---
sidebar_position: 4
---
# Delete product property
Deletes the existing product property
2024-07-10 13:58:29 +03:00
`Function DeleteProductProperty(Val Property, Val Parameters = "") Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Property | --prop | String, Number | Property ID |
| Parameters | --auth | Structure Of String | Authorization JSON or path to .json |
2024-10-09 09:42:00 +03:00
Returns: Map Of KeyAndValue - serialized JSON response from VK
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-08-13 16:47:32 +03:00
Parameters = GetVKParameters();
2024-10-15 10:07:27 +03:00
Property = "878";
2024-08-13 16:47:32 +03:00
Result = OPI_VK.DeleteProductProperty(Property, Parameters);
```
2024-10-15 09:53:37 +03:00
```json title="Result"
2024-08-14 09:06:31 +03:00
{
"response": 1
}
```