VismaBouwsoftAPICalls.v1_GET_CheckIBAN | Method |
This API call is used to get fields of a(n) CheckIBAN(s)
HTTP method | API version |
---|---|
GET | v1 |
Don’t forget to put the Authorization field in the header
API Path: /CheckIBAN/
You make this API call:
* to get the result of CheckIBAN
Fields
The following fields are available:
Field Name | Type |
---|---|
IBAN | String |
BIC | String |
/CheckIBAN/
API Path: /CheckIBAN/
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/CheckIBAN
with the following parameters :
Header Parameters :
ParameterName: Clientnr, ParameterValue: 115
ParameterName: AccessToken, ParameterValue: IVmfWxfGOUzSfrkkbfzRqbkAfUfjGfGDfVlbzjGfkPbfAjIOUl
Query Parameters :
ParameterName: iban, ParameterValue: BE34063936802490
ParameterName: bic, ParameterValue: GKCC BE BB
Success gives statuscode 200 And the following result
{“RecordChanges”:
[
{
"IBAN": "BE34063936802490",
"BIC": "GKCCBEBB"
}
]
}
https://ra.bouwsoft.be/api/v1/CheckIBAN
with the following parameters :
Header Parameters :
ParameterName: Clientnr, ParameterValue: 115
ParameterName: AccessToken, ParameterValue: IVmfWxfGOUzSfrkkbfzRqbkAfUfjGfGDfVlbzjGfkPbfAjIOUl
Query Parameters :
ParameterName: iban, ParameterValue: BE34063936802490
Success gives statuscode 200 And the following result
{“RecordChanges”:
[
{
"IBAN": "BE34063936802490",
"BIC": "GKCCBEBB"
}
]
}