The API is built as a "RESTFUL" API with JSON as data transfer.
This API has a rate limit of 10 request / second for each unique API key. A status code of 429 (Too Many Requests) will be returned if breached.
For endpoints that supports pagination with a cursor parameter, there is a maximum page-size of 200. A status code of 422 (Unprocessable Entity) will be returned if max page size is breached.
All date-time fields are using the ISO-8601 format (ex 2019-06-13T09:29:12+02:00). Usually specified in local time. Dates are specified in the Y-m-d format (ex 2001-03-10).
Postman supports open api, click on the download button above and import directly to postman.
An Integration represents a data source, that a Company can connect towards via Connection's.
Returns all integrations supported by Monto.
OK
{- "integrations": [
- {
- "key": "FORTNOX",
- "label": "Fortnox",
- "sourceType": "ERP",
- "authType": "REDIRECT",
- "enabled": true,
- "fields": [ ]
}
], - "links": {
- "perPage": 50,
}
}
Returns a single integration.
OK
Not Found
{- "key": "FORTNOX",
- "label": "Fortnox",
- "sourceType": "ERP",
- "authType": "REDIRECT",
- "enabled": true,
- "fields": [ ]
}
A Connection represents a link between a Company and a third-party Integration.
Get a list of all Connections.
OK
Not Found
{- "connections": [
- {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "status": "PENDING",
- "integration": {
- "key": "FORTNOX",
- "label": "Fortnox"
}, - "lastUsedAt": null,
- "createdAt": "2022-01-01T17:00:00Z"
}
]
}
Creates a new Connection.
integrationKey | string (IntegrationEnum) The |
redirectUrl | string An redirect url to which the end user is redirected to after completing the auth steps. Only required on integrations with authType REDIRECT |
Array of objects An array of fields, specified on each Integration. |
OK
Not Found
Unprocessable Entity
{- "integrationKey": "FORTNOX",
- "fields": [ ]
}
{- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "status": "PENDING",
- "integration": {
- "key": "FORTNOX",
- "label": "Fortnox"
}, - "lastUsedAt": null,
- "createdAt": "2022-01-01T17:00:00Z"
}
Updates a Connection by UUID.
OK
Not Found
Unprocessable Entity
{- "status": "DISABLED_MANUALLY"
}
{- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "status": "PENDING",
- "integration": {
- "key": "FORTNOX",
- "label": "Fortnox"
}, - "lastUsedAt": null,
- "createdAt": "2022-01-01T17:00:00Z"
}
A Company represents a business, sharing access to their data via Connections.
Returns a list of companies.
OK
{- "companies": [
- {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Monto AB",
- "businessId": "559028-3601",
- "contactFirstName": "Erik",
- "contactLastName": "Steve",
- "email": "contact@company.com",
- "phone1": 123456789,
- "phone2": 123456789,
- "status": "NO_CONNECTION",
- "addresses": [
- {
- "address": "Linnégatan 89",
- "zipCode": "111 35",
- "city": "Stockholm",
- "country": "Sweden",
- "latitude": 59.328588,
- "longitude": 18.006286,
- "type": "VISIT"
}
], - "sniCode": 12345,
- "sniGroup": "Datakonsultverksamhet",
- "sniDetails": "Data, IT & Telekommunikation"
}
], - "links": {
- "perPage": 50,
}
}
{- "name": "Monto AB"
}
{- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Monto AB",
- "legalName": "Monto AB",
- "businessId": "559028-3601",
- "contactFirstName": "Erik",
- "contactLastName": "Steve",
- "email": "contact@company.com",
- "phone1": 123456789,
- "phone2": 123456789,
- "hasConnections": true,
- "syncStatus": "PENDING",
- "status": "NO_CONNECTION",
- "addresses": [
- {
- "address": "Linnégatan 89",
- "zipCode": "111 35",
- "city": "Stockholm",
- "country": "Sweden",
- "latitude": 59.328588,
- "longitude": 18.006286,
- "type": "VISIT"
}
]
}
{- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Monto AB",
- "businessId": "559028-3601",
- "contactFirstName": "Erik",
- "contactLastName": "Steve",
- "email": "contact@company.com",
- "phone1": 123456789,
- "phone2": 123456789,
- "status": "NO_CONNECTION",
- "addresses": [
- {
- "address": "Linnégatan 89",
- "zipCode": "111 35",
- "city": "Stockholm",
- "country": "Sweden",
- "latitude": 59.328588,
- "longitude": 18.006286,
- "type": "VISIT"
}
], - "sniCode": 12345,
- "sniGroup": "Datakonsultverksamhet",
- "sniDetails": "Data, IT & Telekommunikation"
}
Account Transactions represents all activities within a Journal Entry.
Returns a list of account transactions for a company.
OK
Not Found
{- "accountTransactions": [
- {
- "accountNumber": 1790,
- "accountName": "Övriga förutbetalda kostnader och upplupna intäkter",
- "journalUuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "debet": {
- "amount": 100,
- "currency": "SEK"
}, - "debit": {
- "amount": 100,
- "currency": "SEK"
}, - "credit": {
- "amount": 0,
- "currency": "SEK"
}, - "date": "2022-01-01T17:00:00Z",
- "updatedAt": "2022-01-01T17:00:00Z"
}
], - "links": {
- "perPage": 50,
}
}
A Journal represents all business activies registered as Journal Entries.
Returns a list of all Journal Entries for a Company sorted by Journal date desc.
OK
Not Found
{- "journalEntries": [
- {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "number": 14,
- "currency": "SEK",
- "series": "A",
- "description": "Kassarapport 2022-01-01",
- "date": "2022-01-01T17:00:00Z",
- "registrationDate": "2022-01-01T17:00:00Z",
- "fiscalYear": {
- "uuid": "14d1c2cc-372e-4a37-8da1-32a0aacf712a",
- "from": "2021-05-01",
- "to": "2022-04-30"
}, - "updatedAt": "2022-01-01T17:00:00Z",
- "accountTransactions": [
- {
- "accountNumber": 1790,
- "accountName": "Övriga förutbetalda kostnader och upplupna intäkter",
- "journalUuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "debet": {
- "amount": 100,
- "currency": "SEK"
}, - "debit": {
- "amount": 100,
- "currency": "SEK"
}, - "credit": {
- "amount": 0,
- "currency": "SEK"
}, - "date": "2022-01-01T17:00:00Z",
- "updatedAt": "2022-01-01T17:00:00Z"
}
]
}
], - "links": {
- "perPage": 50,
}
}
Returns a single Journal Entry for a Company.
OK
Not Found
{- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "number": 14,
- "currency": "SEK",
- "series": "A",
- "description": "Kassarapport 2022-01-01",
- "date": "2022-01-01T17:00:00Z",
- "registrationDate": "2022-01-01T17:00:00Z",
- "fiscalYear": {
- "uuid": "14d1c2cc-372e-4a37-8da1-32a0aacf712a",
- "from": "2021-05-01",
- "to": "2022-04-30"
}, - "updatedAt": "2022-01-01T17:00:00Z",
- "accountTransactions": [
- {
- "accountNumber": 1790,
- "accountName": "Övriga förutbetalda kostnader och upplupna intäkter",
- "journalUuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "debet": {
- "amount": 100,
- "currency": "SEK"
}, - "debit": {
- "amount": 100,
- "currency": "SEK"
}, - "credit": {
- "amount": 0,
- "currency": "SEK"
}, - "date": "2022-01-01T17:00:00Z",
- "updatedAt": "2022-01-01T17:00:00Z"
}
]
}
Accounts are used to register account transactions in Journal Entries.
Returns the account values, separated for each account of the selected accounts
OK
Not Found
Unprocessable Entity
{- "accounts": [
- {
- "account": 1530,
- "accountName": "Kontraktsfodringar.",
- "updatedAt": "2028-10-15 11:04:21",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}
], - "links": {
- "perPage": 50,
}
}
Returns an aggregated bundle of Account Transactions for a Company.
OK
Not Found
Unprocessable Entity
{- "accounts": "1500-1599,1667,1200-1299",
- "name": "Aggregated values for selected accounts.",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}
Returns a list of fiscal years.
OK
{- "fiscalYears": [
- {
- "uuid": "14d1c2cc-372e-4a37-8da1-32a0aacf712a",
- "from": "2021-05-01",
- "to": "2022-04-30"
}
], - "links": {
- "perPage": 50,
}
}
Returns reliability dates for a company.
OK
Not Found
{- "ranges": [
- {
- "from": "2022-01-01T17:00:00Z",
- "to": "2022-01-31T17:00:00Z",
- "case": "OK_DATA",
- "indicator": "string",
- "message": "string"
}
], - "updatedAt": "2022-01-01T17:00:00Z"
}
This is an alpha version of the endpoint. It's subject to change and not recommended for production use. Returns liquidity forecasts for a company.
OK
Not Found
{- "predictionDate": "2022-01-01T17:00:00Z",
- "forecast": {
- "cashAvailable": [
- {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "date": "2019-08-24"
}
], - "cashInflow": [
- {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "date": "2019-08-24"
}
], - "cashOutflow": [
- {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "date": "2019-08-24"
}
], - "customerInvoicesInflow": [
- {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "date": "2019-08-24"
}
], - "supplierInvoicesOutflow": [
- {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "date": "2019-08-24"
}
]
}, - "history": {
- "cashAvailable": [
- {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "date": "2019-08-24"
}
], - "cashInflow": [
- {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "date": "2019-08-24"
}
], - "cashOutflow": [
- {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "date": "2019-08-24"
}
], - "customerInvoicesInflow": [
- {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "date": "2019-08-24"
}
], - "supplierInvoicesOutflow": [
- {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "date": "2019-08-24"
}
]
}
}
Returns cash flow statements for a company. Response is only available for API consumers that have access to the feature. Please talk to your Monto contact or support@monto.ai for details.
OK
Not Found
{- "operatingActivities": {
- "label": "string",
- "results": {
- "ebit": {
- "label": "string",
- "results": [
- {
- "label": "string",
- "periodStart": "2019-08-24",
- "periodEnd": "2019-08-24",
- "result": 0
}
]
}, - "depreciationAndAmortization": {
- "label": "string",
- "results": [
- {
- "label": "string",
- "periodStart": "2019-08-24",
- "periodEnd": "2019-08-24",
- "result": 0
}
]
}, - "financialCosts": {
- "label": "string",
- "results": [
- {
- "label": "string",
- "periodStart": "2019-08-24",
- "periodEnd": "2019-08-24",
- "result": 0
}
]
}, - "financialIncome": {
- "label": "string",
- "results": [
- {
- "label": "string",
- "periodStart": "2019-08-24",
- "periodEnd": "2019-08-24",
- "result": 0
}
]
}, - "otherNonCashflowImpactingPosts": {
- "label": "string",
- "results": [
- {
- "label": "string",
- "periodStart": "2019-08-24",
- "periodEnd": "2019-08-24",
- "result": 0
}
]
}, - "tax": {
- "label": "string",
- "results": [
- {
- "label": "string",
- "periodStart": "2019-08-24",
- "periodEnd": "2019-08-24",
- "result": 0
}
]
}
}
}, - "changeInOperatingCapital": {
- "changeInOperatingCapital": { },
- "changeInInventory": { },
- "changeOfShortTermDebt": { }
}, - "investmentActivities": {
- "financialFixedAssets": { },
- "intangibleFixedAssets": { },
- "tangibleFixedAssets": { }
}, - "financingActivities": {
- "dividendOrNewIssueOfShares": { },
- "longTermLiabilities": { }
}
}
Returns cash flow statement results for a Company, in a PDF file. Response is only available for API consumers that have access to the feature. Please talk to your Monto contact or support@monto.ai for details.
OK
Not Found
Unprocessable Entity
Returns bundled account balances for a Company.
OK
Not Found
{- "intangibleFixedAssets": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "tangibleFixedAssets": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "financialFixedAssets": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "capitalAssets": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "inventoriesEtc": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "receivables": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "shortTermInvestments": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "cashAndBank": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "currentAssets": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "totalAssets": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "equity": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "untaxedReserves": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "provisions": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "longTermLiabilities": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "longTermLiabilitiesToCreditInstitutions": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "otherLongTermLiabilities": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "shortTermLiabilities": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "accountPayables": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "totalLiabilities": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "equityAndLiabilities": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "calculatedResult": {
- "accounts": "E.g. 1000-1099",
- "name": "E.g. Immateriella anläggningstillgångar",
- "history": [
- {
- "breakDate": "2022-01-01",
- "label": "2022 January",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "change": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}
}
An Income Statement shows the aggregated operating income and operating costs, by pre-defined account groups.
Returns bundled account results for a Company.
OK
Not Found
Unprocessable Entity
{- "netSales": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "ownWorkCapitalized": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "otherOperatingIncome": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "totalRevenue": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "purchaseGoodsMaterials": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "unspecifiedAccounts": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "changeInInventories": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "grossProfit": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "otherExternalOperatingExpenses": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "personnelCosts": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "ebitda": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "writeDowns": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "depreciations": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "otherOperatingExpenses": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "ebit": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "financialAndOtherIncomes": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "extraordinaryIncomeAndExpenses": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "appropriations": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "taxes": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "financialYearResult": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "earningsAfterTaxes": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "operatingCosts": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "calculatedResult": {
- "accounts": "E.g. 3000-3799",
- "name": "E.g. Nettoförsäljning",
- "results": [
- {
- "periodStart": "2021-12-01",
- "periodEnd": "2021-12-31",
- "label": "2021 December",
- "result": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}
}
A financial KPI or metric is a measurable value that indicates a company’s financial results and performance, provides information about expenses, sales, profit, and cash flow, in order to optimize and achieve business’ financial goals and objectives.
Returns metrics for a Company.
OK
Not Found
Unprocessable Entity
{- "profitMargin": {
- "type": "Profitability ratio",
- "name": "Profit margin",
- "formatType": "PERCENTAGE",
- "monthly": [
- {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.34221",
- "formattedValue": "34.22"
}
], - "latest12Mo": {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.43211",
- "formattedValue": "43.21"
}
}, - "interestCoverageRatio": {
- "type": "Coverage ratio",
- "name": "Interest coverage ratio",
- "formatType": "PERCENTAGE",
- "monthly": [
- {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.34221",
- "formattedValue": "34.22"
}
], - "latest12Mo": {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.43211",
- "formattedValue": "43.21"
}
}, - "equityToAssetsRatio": {
- "type": "Leverage ratio",
- "name": "Equity to assets ratio",
- "formatType": "PERCENTAGE",
- "monthly": [
- {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.34221",
- "formattedValue": "34.22"
}
], - "latest12Mo": {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.43211",
- "formattedValue": "43.21"
}
}, - "returnOnAssets": {
- "name": "Return on assets (R12)",
- "formatType": "PERCENTAGE",
- "rolling12Mo": [
- {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.34221",
- "formattedValue": "34.22"
}
]
}, - "returnOnEquity": {
- "name": "Return on equity (R12)",
- "formatType": "PERCENTAGE",
- "rolling12Mo": [
- {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.34221",
- "formattedValue": "34.22"
}
]
}, - "currentRatio": {
- "type": "Liquidity ratio",
- "name": "Current ratio",
- "formatType": "PERCENTAGE",
- "monthly": [
- {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.34221",
- "formattedValue": "34.22"
}
], - "latest12Mo": {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.43211",
- "formattedValue": "43.21"
}
}, - "cashRatio": {
- "type": "Liquidity ratio",
- "name": "Cash ratio",
- "formatType": "PERCENTAGE",
- "monthly": [
- {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.34221",
- "formattedValue": "34.22"
}
], - "latest12Mo": {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.43211",
- "formattedValue": "43.21"
}
}, - "grossMargin": {
- "type": "Profitability ratio",
- "name": "Gross margin",
- "formatType": "PERCENTAGE",
- "monthly": [
- {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.34221",
- "formattedValue": "34.22"
}
], - "latest12Mo": {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.43211",
- "formattedValue": "43.21"
}
}, - "quickRatio": {
- "type": "Liquidity ratio",
- "name": "Quick ratio",
- "formatType": "PERCENTAGE",
- "monthly": [
- {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.34221",
- "formattedValue": "34.22"
}
], - "latest12Mo": {
- "periodStart": "2022-04-01",
- "periodEnd": "2022-04-30",
- "label": "2022-04",
- "value": "0.43211",
- "formattedValue": "43.21"
}
}
}
Returns a list of suppliers.
OK
Not Found
{- "suppliers": [
- {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Monto AB",
- "businessId": "559028-3601",
- "amountTotalInvoices": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountNotDueNotPaid": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountOverdueNotPaid": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountCreditedInvoices": {
- "amount": 10.12,
- "currency": "SEK"
}
}
], - "links": {
- "perPage": 50,
}
}
Returns a list of customers.
OK
Not Found
{- "customers": [
- {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Monto AB",
- "businessId": "559028-3601",
- "externalId": "string",
- "amountTotalInvoices": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountNotDueNotPaid": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountOverdueNotPaid": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountCreditedInvoices": {
- "amount": 10.12,
- "currency": "SEK"
}, - "annualRevenueShare": 10.12,
- "firstTimeCustomer": true
}
], - "links": {
- "perPage": 50,
}
}
Returns insights on a company's customers.
OK
Not Found
{- "customerSpread": [
- {
- "amountTotalInvoices": {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "amountNotDueNotPaidInvoices": {
- "amount": 100,
- "currency": "SEK",
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "amountOverDueNotPaidInvoices": {
- "amount": 100,
- "currency": "SEK",
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "averagePaymentTerms": {
- "days": 10.2,
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "days": 10.2
}
]
}, - "averageOverdueDays": {
- "days": 10.2,
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "days": 10.2
}
]
}
}
]
}
Payments made to the Customer Invoice.
Returns a list of payments for a customer invoice.
OK
Not Found
{- "payments": [
- {
- "uuid": "e672230d-cd2b-4de2-b45c-9d37127a4603",
- "date": "2022-01-01",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}
A record of sold goods or provided services to a Customer with a payment in demand.
Returns a list of customer invoices.
OK
Not Found
{- "amountTotalInvoices": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountNotDueNotPaid": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountNotDueNotPaidRatio": 10.12,
- "amountOverdueNotPaid": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountOverdueNotPaidRatio": 5.52,
- "creditedInvoices": true,
- "prepaymentInvoices": true,
- "avgPaymentTerms": 30,
- "avgOverdueDays": 10,
- "invoices": [
- {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "invoiceNumber": "302",
- "ocr": "72349263847",
- "customer": {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Monto AB",
- "businessId": "559028-3601"
}, - "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "amountBaseCurrency": {
- "amount": 100,
- "currency": "SEK"
}, - "issueDate": "2019-08-24",
- "dueDate": "2019-08-24",
- "paidInFullDate": "2019-08-24",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "balanceBaseCurrency": {
- "amount": 100,
- "currency": "SEK"
}, - "connection": {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Fortnox"
}, - "payments": [
- {
- "uuid": "e672230d-cd2b-4de2-b45c-9d37127a4603",
- "date": "2022-01-01",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
], - "createdAt": "2019-08-24",
- "updatedAt": "2019-08-24"
}
], - "links": {
- "perPage": 50,
}
}
Returns a single customer invoice.
OK
Not Found
{- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "invoiceNumber": "302",
- "ocr": "72349263847",
- "customer": {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Monto AB",
- "businessId": "559028-3601"
}, - "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "amountBaseCurrency": {
- "amount": 100,
- "currency": "SEK"
}, - "issueDate": "2019-08-24",
- "dueDate": "2019-08-24",
- "paidInFullDate": "2019-08-24",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "balanceBaseCurrency": {
- "amount": 100,
- "currency": "SEK"
}, - "connection": {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Fortnox"
}, - "payments": [
- {
- "uuid": "e672230d-cd2b-4de2-b45c-9d37127a4603",
- "date": "2022-01-01",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
], - "createdAt": "2019-08-24",
- "updatedAt": "2019-08-24",
- "ourReference": "John Nilsson",
- "yourReference": "string",
- "deliveryDate": "2019-08-24",
- "invoiceRows": [
- {
- "externalId": "string",
- "currency": "string",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "quantity": 0,
- "name": "string",
- "unit": "string",
- "vatRate": 100
}
]
}
Returns a pdf for a single customer invoice. Response is only available for API consumers that have access to the feature. Please talk to your Monto contact or support@monto.ai for details.
OK
Not Found
Returns insights on month by month a company's customer invoices.
OK
Not Found
{- "amountTotalInvoices": {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "amountNotDueNotPaidInvoices": {
- "amount": 100,
- "currency": "SEK",
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "amountOverDueNotPaidInvoices": {
- "amount": 100,
- "currency": "SEK",
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "averagePaymentTerms": {
- "days": 10.2,
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "days": 10.2
}
]
}, - "averageOverdueDays": {
- "days": 10.2,
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "days": 10.2
}
]
}
}
A record of bought goods or received services to a Supplier with a payment in demand.
This is an alpha version of the endpoint. It's subject to change and not recommended for production use. Returns insights on month by month a company's supplier invoices.
OK
Not Found
{- "amountTotalInvoices": {
- "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "amountNotDueNotPaidInvoices": {
- "amount": 100,
- "currency": "SEK",
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "amountOverDueNotPaidInvoices": {
- "amount": 100,
- "currency": "SEK",
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}, - "averagePaymentTerms": {
- "days": 10.2,
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "days": 10.2
}
]
}, - "averageOverdueDays": {
- "days": 10.2,
- "history": [
- {
- "fromDate": "2022-01-01",
- "toDate": "2022-01-31",
- "days": 10.2
}
]
}
}
Returns a list of supplier invoices.
OK
Not Found
{- "amountTotalInvoices": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountNotDueNotPaid": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountNotDueNotPaidRatio": 10.12,
- "amountOverdueNotPaid": {
- "amount": 10.12,
- "currency": "SEK"
}, - "amountOverdueNotPaidRatio": 5.52,
- "creditedInvoices": true,
- "prepaymentInvoices": true,
- "avgPaymentTerms": 30,
- "avgOverdueDays": 10,
- "invoices": [
- {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "externalId": "6",
- "invoiceNumber": "8909",
- "supplier": {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Monto AB",
- "businessId": "559028-3601"
}, - "amount": {
- "amount": 100,
- "currency": "SEK"
}, - "amountBaseCurrency": {
- "amount": 100,
- "currency": "SEK"
}, - "issueDate": "2019-08-24",
- "dueDate": "2019-08-24",
- "balance": {
- "amount": 100,
- "currency": "SEK"
}, - "balanceBaseCurrency": {
- "amount": 100,
- "currency": "SEK"
}, - "connection": {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "name": "Fortnox"
}, - "paidInFullDate": "2019-08-24",
- "payments": [
- {
- "date": "2022-01-01",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
], - "createdAt": "2019-08-24",
- "updatedAt": "2019-08-24"
}
], - "links": {
- "perPage": 50,
}
}
Payments made to the Supplier Invoice.
Returns a list of payments for a supplier invoice.
OK
Not Found
{- "payments": [
- {
- "date": "2022-01-01",
- "amount": {
- "amount": 100,
- "currency": "SEK"
}
}
]
}
In order to avoid polling for changes, we allow you to register subscriptions that will notify you when certain event occurs.
Returns a list of your registered subscriptions.
OK
{- "subscriptions": [
- {
- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "protocol": "HTTPS",
- "topics": [
- "*"
], - "verified": true
}
], - "links": {
- "perPage": 50,
}
}
Create a new subscription.
protocol | string (SubscriptionProtocolEnum) The |
endpoint | string The endpoint of the subscription. Make sure to verify the endpoint once created. |
topics | Array of strings The specified topics of the subscription. |
OK
Unprocessable Entity
{- "protocol": "HTTPS",
- "topics": [
- "*"
]
}
{- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "protocol": "HTTPS",
- "topics": [
- "*"
], - "verified": true
}
The body described here of the webhook will included as a json string inside the field message. Full example of the actual webhook:
{
"Type": "Notification",
"MessageId": "8e49fb24-d140-5026-80d5-a0d152c677b7",
"TopicArn": "arn:aws:sns:eu-north-1:580873861511:capcito-CONNECTION_ESTABLISHED",
"Message": "{\"topic\":\"CONNECTION_ESTABLISHED\",\"entityUuid\":\"3b097418-bdfe-4cb4-a7e4-a2274d8b9f3b\",\"companyUuid\":\"d5ab0237-815b-48a1-b6bb-2758a30b64ab\"}",
"Timestamp": "2022-11-21T13:46:46.691Z",
"SignatureVersion": "1",
"Signature": "ryZrfmXzSjqLmK1pUiAZAAy2jg+jTTxDwIqZgB+pMXp2GBh0+wXznVrLDX6Y+qzFqruaPEtDEnci8qpvbzq3dbpFfkspXqTEnDPC5L+I9xPeMDEoQTqKvU6rLV4uLQEO+KvtQAZgcZEYnqzkY6VMnmIAvU6FP+5DZS84+kuL6epQYzUCRNFOEzVLY3sW0ieQX3d4hpOeZlD+0UaKe2RaVZaQd8L3mf7tsER6Vxkl7FkEvRCTy/6OgeZYaIwJGNqSefqnIJFCgE70UCPJ4HStSDlKoZ/vju8c6rKZdsz/iCHqyBC22PoWKi0QLF4X7KME3ZCYJMElALZ50LFuFtJW0w==",
"SigningCertURL": "https://sns.eu-north-1.amazonaws.com/SimpleNotificationService-56e67fcb41f6fec09b0196692625d385.pem",
"UnsubscribeURL": "https://sns.eu-north-1.amazonaws.com/?Action=Unsubscribe&SubscriptionArn=arn:aws:sns:eu-north-1:580873861511:capcito-CONNECTION_ESTABLISHED:323b0a2c-0a8e-4ccc-b606-7d96b29ff097"
}
OK
{- "entityUuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "companyUuid": "d5ab0237-815b-48a1-b6bb-2758a30b64ab",
- "topic": "CUSTOMER_INVOICE_CREATED"
}
{- "uuid": "9e0a58e5-60b5-4c15-ba2e-77b1bed4977d",
- "protocol": "HTTPS",
- "topics": [
- "*"
], - "verified": true
}
Returns a list of messages for a company
OK
Not Found
{- "messages": [
- {
- "uuid": "14d1c2cc-372e-4a37-8da1-32a0aacf712a",
- "ruleUuid": "14d1c2cc-372e-4a37-8da1-32a0aacf712a",
- "level": "WARNING",
- "title": "Revenue drop",
- "description": "This company has a drop in revenue (at least a 28% drop during last 12 reliable months compared to the previous 12 months)",
- "validTo": "2022-01-01T17:00:00Z",
- "createdAt": "2022-01-01T17:00:00Z"
}
], - "links": {
- "perPage": 50,
}
}