VismaBouwsoftAPICalls.v1_POST_MachineLists | Method |
This API call is used to add a(n) MachineList
General Description
HTTP method | API version |
---|---|
POST | v1 |
Don’t forget to put the Authorization field in the header
API Path: /MachineLists
or
Fields
The following fields are available:
Field Name | Type |
---|---|
id | Number |
name | String |
name_localized | String |
active | Boolean |
used | Boolean |
/MachineLists
API Path: /MachineLists/
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/MachineLists
with the following parameters :
Header Parameters :
ParameterName: Clientnr, ParameterValue: 115
ParameterName: AccessToken, ParameterValue: VflfWxfkfAzSfPtrbfzRqmtjfUbAGfOVfIrbzlUOtUjffDDrrr
Query Parameters :
ParameterName: columns, ParameterValue: name=’machinelist added from api’
Success gives statuscode 201 And the following result
{“RecordChanges”:
[
{
"id": 29,
"name": "MACHINELIST ADDED FROM API",
"name_localized": "MACHINELIST ADDED FROM API",
"active": true,
"used": false
}
]
}