VismaBouwsoftAPICalls.v1_GET_Jobs Method
v1_GET_Jobs() as String

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

HTTP method API version
GET v1

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

API Path: /Jobs/
or
API Path: /Jobs/{id}

You can make this API call:
* without the key field id to get a list of Jobs
* with the key field id as the path parameter (the specific id of the Job you want to get)

Fields

The following fields are available:

Field Name Type
id Number
code String
name String
price_hour Number
price_hour_saturday Number
price_hour_sunday Number
price_km Number
ts_lastupdate String

/Jobs/

API Path: /Jobs/

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

with the following parameters :

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

Query Parameters :
ParameterName: limit, ParameterValue: 5
ParameterName: sort, ParameterValue: id

Success gives statuscode 200 And the following result

{ “Content-Range”:“0–4/46”, “Records”: [
  {
    "id": 1,
    "code": "02",
    "name": "TRANSPORT",
    "price_hour": 69.0,
    "price_hour_saturday": 90.75,
    "price_hour_sunday": 121.0,
    "price_km": 0.98,
    "ts_lastupdate": "2020–10–19 08:38:45"
  },
  {
    "id": 2,
    "code": "01",
    "name": "VOORBEREIDING",
    "price_hour": 45.0,
    "price_hour_saturday": 45.0,
    "price_hour_sunday": 50.0,
    "price_km": 0.99,
    "ts_lastupdate": "2021–07–07 13:39:41"
  }
,

]
}

/Jobs/{id}

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 there is no record that has the requested id the HTTP response status and code is 404
(404 Not found)

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/Jobs/48

with the following parameters :

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

Success gives statuscode 200 And the following result

{ “Content-Range”:“0–0/1”, “Records”: [
  {
    "id": 48,
    "code": "APIJOB",
    "name": "",
    "price_hour": 21.5,
    "price_hour_saturday": 0.0,
    "price_hour_sunday": 0.0,
    "price_km": 0.0,
    "ts_lastupdate": "2025–02–12 14:27:59"
  }
]
}