This object represents a single request for a confirmation from a third party for a particular
audit client. A third party can be either a bank, lawyer, supplier, or client.
Each audit request pertains to exactly one audit client (company
), and any number of subsidiaries
(subsidiaries
).
Attribute | Type | Description |
token | String | Unique identifier |
acccountNumbers | List<AccountNumber> | List of account numbers associated with the audit request. |
attachments | List<String> | List of tokens used to uniquely identify an attachment associated with the audit request (includes the digitally signed pdf after the audit request has been signed by all signees). |
auditCompany | String | Name of the audit company to which the associated auditor of the audit request belongs |
bank | Bank | The bank associated with this audit request. |
company | Company | The main audit client. |
confirmation | Confirmation | Confirmation for the audit request. This field is null if the audit request has not been confirmed. |
cutOffDate | Date | The end of the fiscal year for the associated audit client. |
invoiceReference | String | ID used for internal reference at the audit company. This field is null if the audit company does not have this setting enabled. |
language | String | The language used for the audit request. Adheres to the ISO 639-1 standard. Valid values: da , en , nb , sv . |
lastUpdate | DateTime | When was the audit request last updated? |
lastingPowerOfAttorney | LastingPowerOfAttorney | Lasting power of attorney (LPA) associated with this request. This field is null if the audit request has no associated LPA, or if the request is not a bank request. |
requestType | String | Valid valies: bank , client , lawyer , supplier . |
sentToClientAt | Date | Date the audit request was first sent its signees. |
signees | List<Signee> | List of signees associated with the audit request. |
step | String | Valid values: started , client , needs-validation , third-party , received , cancelled , archived , post . |
subsidiaries | List<Company> | List of subsidiaries associated with the audit request. |
subType | String | Valid values: completeness , existence . This field is null unless the audit request has the client or supplier request type. |
thirdParty | String | Name of the audit request's associated third party. |
user | User | The auditor associated with the audit request. |
Audit request
{
"token": "3ffad0ece7ba919e08a7a39b38666bb7fa4c121fae27551eb2877c7c0b96a127",
"accountNumbers": [
{
"accountNumber": "1232.20.12313",
"company": {
"country": "no",
"name": "ACME AS",
"vatNo": "999999999"
}
}
],
"attachments": [],
"auditCompany": "Brevio AS",
"bank": {
"token": "042172ae-9e59-4b8e-910f-3f707a727659",
"country": "no",
"disabled": false,
"hasLPA": true,
"lpaType": "specific",
"name": "DNB"
},
"company": {
"name": "ACME AS",
"vatNo": "999999999",
"country": "no"
},
"confirmation": {
"attachments": [
"3ffad0ece7ba919e08a7a39b38666bb7fa4c121fae27551eb2877c7c0b96a127",
"a4c60323af9e76bb9877a75631dd6a51d62db93929a223ac4d91eacabf2bda1a"
],
"sentAt": "2023-01-01"
},
"cutOffDate": "2022-12-31",
"language": "nb",
"lastUpdate": "2022-10-02T11:53:23Z",
"lastingPowerOfAttorney": null,
"manualReview": false,
"requestType": "bank",
"sentToClientAt": "2022-10-01",
"signatureReviews": [
{
"reviewedBy": "Bob Odenkirk",
"verified": true,
"reviewedAt": "2022-10-03T11:00:23Z",
"company": {
"name": "ACME AS",
"vatNo": "999999999",
"country": "no"
}
}
],
"signees": [
{
"email": "[email protected]",
"name": "Arthur Dent",
"pid": null,
"signed": true
},
{
"email": "[email protected]",
"name": "Guybrush Threepwood",
"pid": null,
"signed": true
}
],
"startedProcessing": true,
"step": "received",
"subsidiaries": [
{
"name": "ACME Doorknobs Oy",
"vatNo": "99999988",
"country": "fi"
}
],
"subType": null,
"thirdParty": "DNB",
"user": {
"email": "[email protected]",
"officeAddress": "Gatevei 1313, 0561 Oslo"
}
}