Used to check the status of the API
Responses
| Code | Description |
|---|---|
| 200 | OK Media type application/json |
Basic OAuth authorization and REST API
Used to check the status of the API
| Code | Description |
|---|---|
| 200 | OK Media type application/json |
Get accounting data for borrower.
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| orgNr | string | path | Yes | The brreg organization number of the borrower to retrieve data from. |
| limit | integer | query | No | Max amount of items to return |
| skip | integer | query | No | Number of items to skip. |
| Code | Description |
|---|---|
| 200 | OK Media type application/json |
Get a list of all relationships.
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| limit | integer | query | No | Max amount of items to return |
| skip | integer | query | No | Number of items to skip. |
| Code | Description |
|---|---|
| 200 | OK Media type application/json |
Get data about relationship with a borrower.
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| orgNr | string | path | Yes | The brreg organization number of the borrower to retrieve data from. |
| Code | Description |
|---|---|
| 200 | OK Media type application/json |
Request access to a borrower company. This will generate a signup link and create a relationship in state access_requested. Forward the link to the borrower, and after they have completed the onboarding they can accept the request. The relationship will then be set to access_approved, and you will be able to view data. Call GET /relationship/{orgNr} to see relationship status.
{
"bankContactEmail": "bank@email.com",
"borrowers": [
{
"orgNr": "000000000"
}
]
}| Code | Description |
|---|---|
| 200 | OK Media type application/json |
Get notifications
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| limit | integer | query | No | Max amount of items to return |
| skip | integer | query | No | Number of items to skip. |
| Code | Description |
|---|---|
| 200 | OK Media type application/json |
Get notifications for a borrower you have an approved relationship with.
| Name | Type | In | Required | Description |
|---|---|---|---|---|
| orgNr | string | path | Yes | The brreg organization number of the borrower to retrieve data from. |
| limit | integer | query | No | Max amount of items to return |
| skip | integer | query | No | Number of items to skip. |
| Code | Description |
|---|---|
| 200 | OK Media type application/json |
| 400 | No relationship found Media type application/json |