Modify batch of article categories
Headers
-
TARGET-ORGANIZATION-ID integer(int32)
ID of organization, for which the operation must be performed
-
API token (can be retrieved from account settings)
Body Required
articleCategories
-
children array[object]
Additional properties are allowed.
-
id integer
-
name string
-
organizationId integer
-
parentCategoryId integer
-
position integer(int32)
PUT /api-v1/article/category/batch
curl \
-X PUT http://10.10.10.132/api-v1/article/category/batch \
-H "TARGET-ORGANIZATION-ID: 42" \
-H "WEAL-TOKEN: string" \
-d '[{"children":[{}],"id":42,"name":"string","organizationId":42,"parentCategoryId":42,"position":42}]'
Request examples
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string
# Payload
[
{
"children": [
{}
],
"id": 42,
"name": "string",
"organizationId": 42,
"parentCategoryId": 42,
"position": 42
}
]
Response examples (200)
{
"items": [
{
"error": true,
"errorCode": {
"errorCode": "NO_ERROR",
"errorDetailValues": [
{
"data": "string",
"errorCode": "string",
"fieldName": "string",
"isSevere": true
}
]
},
"freshData": {},
"freshRow": {},
"possibleWorkflows": [
{
"id": 42,
"name": "string"
}
],
"severeError": true
}
]
}