VismaBouwsoftAPICalls.v1_GET_OrderCommissionBeneficiaries Method
v1_GET_OrderCommissionBeneficiaries() as String

This API call is used to get fields of a(n) OrderCommissionBeneficiarie(s)

HTTP method API version
GET v1

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

API Path: /OrderCommissionBeneficiaries/

You make this API call:
* to get the result of OrderCommissionBeneficiaries

Fields

The following fields are available:

Field Name Type
id Number
address_id Number
address_name String
address_description String
employee_id Number
employee_name String
employee_description String

/OrderCommissionBeneficiaries/

API Path: /OrderCommissionBeneficiaries/

If everything succeeds the HTTP response status is 200
(200 OK)

If there is something wrong with the request, the response status and code is 400
(400 Bad Request)

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

If what you sent can’t be processed, the response status is 500
(500 Internal Server Error)

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/OrderCommissionBeneficiaries

with the following parameters :

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

Query Parameters :
ParameterName: limit, ParameterValue: 5
ParameterName: offset, ParameterValue: 158
ParameterName: sort, ParameterValue: -id

Success gives statuscode 200 And the following result

{ “Content-Range”:“158–162/4968”, “Records”: [
  {
    "id": –159,
    "address_id": 15983,
    "address_name": "ALFATEL NV",
    "address_description": "KON. LEOPOLDLAAN 26A BE–9000 Gentbrugge",
    "employee_id": 0,
    "employee_name": "",
    "employee_description": ""
  },
  {
    "id": –160,
    "address_id": 18207,
    "address_name": "ALGEMENE BOUWONDERNEMING BOSTYN BVBA",
    "address_description": " ",
    "employee_id": 0,
    "employee_name": "",
    "employee_description": ""
  }
,

]
}

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

with the following parameters :

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

Query Parameters :
ParameterName: filter, ParameterValue: address_id eq 16030

Success gives statuscode 200 And the following result

{ “Content-Range”:“0–0/1”, “Records”: [
  {
    "id": –247,
    "address_id": 16030,
    "address_name": "APAVISA PORCELANICO S.L.",
    "address_description": "CTRA CAST.-S.JUAN DE MORO 7’5 ES–12130 SAN JUAN DE MORO",
    "employee_id": 0,
    "employee_name": "",
    "employee_description": ""
  }
]
}

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

with the following parameters :

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

Query Parameters :
ParameterName: filter, ParameterValue: employee_id eq 454

Success gives statuscode 200 And the following result

{ “Content-Range”:“0–0/1”, “Records”: [
  {
    "id": –248,
    "address_id": 0,
    "address_name": "",
    "address_description": "",
    "employee_id": 454,
    "employee_name": "APITest",
    "employee_description": ""
  }
]
}