VismaBouwsoftAPICalls.v1_POST_ProductGroups Method
v1_POST_ProductGroups() as String

This API call is used to add a(n) ProductGroup

General Description

HTTP method API version
POST v1

Don’t forget to put the Authorization field in the header

API Path: /ProductGroups
or

Fields

The following fields are available:

Field Name Type
id Number
name String
list_id Number
list_name String
list_active Boolean
used Boolean

/ProductGroups

API Path: /ProductGroups/

If everything succeeds the HTTP response status is 201
(201 CREATED)

If you forget to send the Authorization, the response status and code is 401
(401 Unauthorized)

For an explanation of all possible errors, please consult our section on possible answers to API calls here

Examples:

https://ra.bouwsoft.be/api/v1/ProductGroups

with the following parameters :

Header Parameters :
ParameterName: Clientnr, ParameterValue: 115
ParameterName: AccessToken, ParameterValue: PDlfWxftDOzSfIkmPfzRqlrtfAUAGfIGfVIbzkDbVmjfOlmUlm

Query Parameters :
ParameterName: columns, ParameterValue: list_name=’VERF‘,name=’Colora’

Success gives statuscode 201 And the following result

{“RecordChanges”: [
  {
    "id": 9013,
    "name": "Colora",
    "list_id": 5,
    "list_name": "VERF",
    "list_active": true,
    "used": false
  }
]
}