new Add support for specifying language when creating a case.
new Add support for creating case from a template.
new Add support for managing case templates
new Add support for creating case on individuals.
new Add support for exporting case events. Only supports exporting to a json file.
new Add support for
notifications
on case details
new Add
percent_voting_shares
andpercent_voting_shares_range
fields toultimate_beneficial_ownership
prefill. This field will contain the percentage ownership shares of the ultimate beneficial owner.
new Add support for filtering cases on case ID with the
search
parameter.
new Add support for
attachments
in unsigned contracts. This field will contain the contract to be signed by the signatory.
new Add branding images and company details of an account to
UserAccount
object.
new Add unique flags for check summary when retrieving cases.
new Add support for adding commitment data to
subscription
inAccount
object.
new Add support for
settings
field inAccount
object. Currently onlyinspect_mode
is supported.
new Add support for filtering cases by new query parameters:
country
,sort_by
, andsort_order
.search
has also been extended to support search on organization number and name of a company
new Include
partner.type
inAccount
. This field contains the information about the partner type of the account.
new Include
name
inAccount
. This field will contain the name of the account. Fallback tocompany.name
if not set. This field can be set when creating and updating a account.
new Include
form_submitter
inCase
. This field will contain the information about the user who submitted the form.
new Add support for filtering accounts by new query parameters:
created_by
,type
,company.country
andstatus
new Add support for specifying
type
andstatus
when creating new and updating account
new Add support for
subscription
field in Account object. This field will contain the information about the subscription enabled on the account and products available for reseller accounts.
new Add support for
signed_result
field insigned contract
object. This field will contain the information about the signee from the signing provider. Currently 'BankID' is the only supported signing provider.
breaking
background_color_email
inbranding
is removed in favor ofbackground_color_header
.
new Add support for
COMPANY_TYPE_NOT_SUPPORTED
flag inultimate_beneficial_ownership
andcredit_score
checks.
new Add support for
pdf_logo
inbranding
which will be used in all generated contracts.
breaking The generated contracts will no longer use the
logo
field inbranding
and will usepdf_logo
instead.
new Extend notes section types to include
credit_score
,case_approved
andcase_declined
.
new Add support for
additional_details
insections
forswedish_company
, also addsindustry_sectors
for swedish companies.
new Add support for
SanctionedOrganizationRecord
insanction
checks which returns a list of sanctioned organizations that match the provided information.
new Add support for
details
fields in casechecks
to provide additional information to the check flags. Currently we only supportDATA_MISMATCH
flag.
The API is built around RESTful architecture utilizing predictable and resource-oriented URLs. Request bodies and responses are JSON-encoded. Standard HTTP response codes, authentication methods, and verbs are used to maintain consistency and ease of use. Authenticating an API request requires an API key provided by our dashboard, allowing the user to choose between test mode or live mode.
Authentication is done by using a Bearer
token, which can be requested by using the API key provided by your dashboard. The token is valid for 1 hour and can be refreshed by requesting a new token.
To request a token, simply send a request to /auth/token
with the Authorization header set to Bearer their-api-key
. In response, a unique access token will be provided which remains active for one hour.
Note: Please prefix all API requests with
v1/accounts/{aid}
.
Example request: Requesting access token with API key
POST /auth/token HTTP/1.1
Host: example.com
Authorization: Bearer YOUR_API_KEY_FROM_DASHBOARD
Example response:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 123
{
"access_token": "your_access_token_here",
"token_type": "Bearer",
"expires_in": 3600
}
All subsequent requests to the API must include the Bearer
access token in the Authorization
header.
Example request using the returned access token to list cases:
GET /cases HTTP/1.1
Host: example.com
Authorization: Bearer {access_token}
The API flow is centered around three core components:
A case is a unit of work for the Quickr API. It contains all the information required to perform a compliance check together with any documents, information, checks, and check results associated with the case.
A case can be created by sending a POST
request to the /cases
endpoint. The response will contain a unique identifier for the case, which can be used to retrieve the case at a later time.
prefills
:
Prefills in Quickr enable you to pre-populate information into the declaration form to simplify and speed up the declaration process. You can use this feature to provide information you already have about the entity or include custom information. By providing the company prefill's organization_number and country fields, Quickr can automatically fill out the related company, signatory, and ultimate_beneficial_owner prefills on your behalf.Example request:
{
"publisher": {
"name": "Your company name",
"support_email": "support@company.com"
},
"prefills": [
{
"type": "company",
"data": [
{
"organization_number": "919656395",
"country": "NO"
}
]
}
],
"sections": [
{
"type": "company"
},
{
"type": "ultimate_beneficial_ownership"
},
{
"type": "signatory"
}
]
}
sections
:
These are the sections that will be shown in the declaration form. You can choose which sections you want to show in the form.
checks
:
These are the checks that will be performed on the case. Note that some checks may require specific information to be provided in the case. For example signatory
check requires signatory
section to be present in the case.
Available checks:
company
: Checks a company's information provided in the declarations
against the company's in
the prefills
section and the company status from information in the public register as well as against sanction lists.
signatory
: Checks a signatory's information provided in the declarations
against the signatory's information in the prefills
section,
and the received after the signatory has signed a contract.
individual
: Checks an individual information provided
in the declarations
against the individual's information received after the individual has verified their identity
ultimate_beneficial_ownership
: Checks a ultimate beneficial owner's information provided in the declarations
against the ultimate beneficial owner's information in the prefills
section,
sanctions
: Checks the company
, signatory
and ultimate_beneficial_ownership
information against the sanction and criminal lists.
politically_exposed_person
: Checks the company
, signatory
and ultimate_beneficial_ownership
information against the politically exposed persons lists.
bank_account
: Requires bank_account
section to be present in the case. Checks the validity of the bank account and if the entity is the owner of the bank account.
credit_score
: Requires company
section to be present in the case. Checks the credit score of the company. Also populates the discoveries
field with the credit score information.
agreement
: Requires agreement
section to be present in the case. Checks if the user accepted custom agreements passed in the agreements
prefill.
Note: If a case is created with only
credit_score
check and prefills, the case will automatically be completed with thecredit_score
check result.
A case can follow one of the following life cycles:
sequenceDiagram autonumber participant User participant QuickrApi User->>QuickrApi: POST /cases/ QuickrApi-->>User: Return case with `declaration_url` alt intent "declarations_update" User->>QuickrApi: PUT /cases/:cid/declarations/:did QuickrApi-->>User: Update result else intent "declarations_finished" User->>QuickrApi: PUT /cases/:cid/declarations/:did QuickrApi-->>User: Update result end User->>QuickrApi: GET cases/:cid/contracts/:contract_id/signatories/:sid/sign QuickrApi->>QuickrApi: Process checks asynchronously QuickrApi-->>User: Results available upon query
sequenceDiagram autonumber participant User participant QuickrApi User->>QuickrApi: POST /cases/ QuickrApi-->>User: Return case with `declaration_url` alt intent "declarations_update" User->>QuickrApi: PUT /cases/:cid/declarations/:did QuickrApi-->>User: Update result else intent "declarations_finished" User->>QuickrApi: PUT /cases/:cid/declarations/:did QuickrApi-->>User: Update result end QuickrApi->>QuickrApi: Process checks asynchronously QuickrApi-->>User: Results available upon query
credit_score
check onlysequenceDiagram autonumber participant User participant QuickrApi User->>QuickrApi: POST /cases/ QuickrApi-->>User: Return case QuickrApi->>QuickrApi: Process checks asynchronously QuickrApi-->>User: Results available upon query
Contracts are agreements between a customer and their customer, detailing the terms and conditions of their business relationship.
Checks are the various procedures performed to verify the identity and authenticity of individuals or entities involved, and(or) other custom information with a particular case. Checks are performed automatically once a case declaration is completed and the case does not require
signing, after the case has completed the signing process, or immediately after the case is created if the case only requires a credit_score
check.
Quickr supports scheduling of checks for Ongoing Due Diligence (ODD) and Know Your Customer (KYC) processes. Checks can be scheduled to run at a specific repeating predefined interval. Currently, the following intervals are supported: R-1/P1D
(Daily), R-1/P1M
(Monthly) and R-1/P1Y
(Yearly) intervals. The initial check intervals are determined from when the check initially runs see above. The interval is set per check type by using the schedule
field in the check object. The schedule
field is a string that contains the interval in ISO 8601 format.
For example adding a daily PEP check to our previous example the request would look like this:
POST /cases
Authorization: Bearer <token>
{
"publisher": {
"name": "Your company name",
"support_email": "support@company.com"
},
"prefills": [
{
"type": "company",
"data": [
{
"organization_number": "919656395",
"country": "NO"
}
]
}
],
"sections": [
{
"type": "company"
},
{
"type": "ultimate_beneficial_ownership"
},
{
"type": "signatory"
}
],
"checks": [
{
"type": "politically_exposed_person",
"options": {
"schedule": "R-1/P1D"
}
}
]
}
For all checks after the initial check has run, Quickr will also get updates on the case from public registries and other third party sources to ensure that the case is up to date, before running the check. You will receive a notification(s) when the check has been completed which will contain the results of the check and updates to the case if any.
Notifications are sent via webhook if your case has a callback_url
set. The notification will be sent when the checks are completed and contains changes(if any) from the check results since the last check. More information on this can be found in the Case Events section.
Adding a callback url to our previous example the request would look like this:
POST /cases
Authorization: Bearer <token>
{
"publisher": {
"name": "Your company name",
"support_email": "support@company.com"
},
"prefills": [
{
"type": "company",
"data": [
{
"organization_number": "919656395",
"country": "NO"
}
]
}
],
"sections": [
{
"type": "company"
},
{
"type": "ultimate_beneficial_ownership"
},
{
"type": "signatory"
}
],
"checks": [
{
"type": "politically_exposed_person",
"options": {
"schedule": "R-1/P1D"
}
}
],
"urls": {
"callback_url": "https://yourdomain.com/callback"
}
}
Check results can be found in the checks
field of the case by querying the cases/:cid
endpoint. The checks
field contains an array of check results one for each check performed on the case. The flags
field contains an array of flags that were found during the check. The discoveries
field contains an array of discoveries that were found during the check.
Available flags codes:
Some common flag codes are:
DECLARATION_MISSING
: Which indicates that the declaration is missing.PREFILL_MISSING
: Which indicates that the required prefill is missing.DATA_MISSING
: Which indicates that required data is missing.DATA_MISMATCH
: Which indicates that the data provided in the declaration does not match the data in the prefill.DATA_MANUAL_UPDATE
: Which indicates the data provided in the declaration has been manually updated from the prefill.DISCOVERY_MISSING
: Which means Quickr was unable to find entity/persons information in the public register/data source.Some check specific flag codes are:
company
: A company check may contain the following flag types:COMPANY_INACTIVE
: Which indicates that the company is inactive from the public register.COMPANY_IN_SANCTIONS
: Which indicates that the company is in the sanction list.signatory
: A signatory check may contain the following flag types:CONTRACT_NOT_SIGNED
: This means that the contract has not completed the signing process.SIGNATORY_MISMATCH
: This means that the signatory information provided in the declaration does not match the signatory information from the
signed contract information.ultimate_beneficial_ownership
: A ultimate beneficial ownership check may contain the following flag types:PERSON_IN_SANCTIONS
: Which indicates that the person is in the sanction list.PERSON_IN_PEP
: Which indicates that the person is/is affiliated with a politically exposed person.COMPANY_TYPE_NOT_SUPPORTED
: Which indicates that Quickr does not support this check for the company type. In most cases this means that the company type is a sole proprietorship.politically_exposed_person
: A politically exposed person check may contain the following flag types:PERSON_IN_PEP
: Which indicates that the person is/is affiliated with a politically exposed person.sanctions
: A sanctions check may contain the following flag types:COMPANY_IN_SANCTIONS
: Which indicates that the company is in the sanction list.PERSON_IN_SANCTIONS
: Which indicates that the person is in the sanction list.bank_account
: A bank account check may contain the following flag types:BANK_ACCOUNT_NUMBER_INVALID
: Which indicates that the bank account is invalid/is not owned by the entity.BANK_ACCOUNT_NUMBER_UNSUPPORTED
: Which indicates that Quickr cannot verify the bank account number. Currently only Norwegian bank account numbers are supported.credit_score
: A credit score check may contain the following flag types:COMPANY_HAS_HIGH_RISK
: Which indicates that the credit score is lower than Quickr's set threshold, which is 30%
.COMPANY_HAS_PAYMENT_REMARKS
: Which indicates that the company has some negative payment remarks.COMPANY_TYPE_NOT_SUPPORTED
: Which indicates that Quickr does not support this check for the company type. In most cases this means that the company type is a sole proprietorship.agreement
: An agreement check may contain the following flag types:AGREEMENT_NOT_ACCEPTED
: Which indicates that the user has not accepted the agreement.Note: Some checks
flags
records may contain arecords
field which contains an array of records that caused the flag to be raised. For example, thesanctions
checkflags
record may contain arecords
field that caused thePERSON_IN_SANCTIONS
flag to be raised.
The token endpoint is used to get the JWT (JSON Web Token) that
must be passed in every API request in the Authorization
header.
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
{- "access_token": "string",
- "token_type": "Bearer",
- "expires_in": 3600
}
Use this endpoint exchange access_token
to a sub-account
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
Content-Type required | string Example: application/json The content type must be |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
account_id required | string (AccountId) = 9 characters ^[PT]Q\d{7}$ The account id |
scope | Array of strings Specify desired scope of the token issue. If the scope is unspecified, the issued token scope will match the authorization |
{- "account_id": "PQ1230483",
- "scope": [
- "string"
]
}
{- "access_token": "string",
- "token_type": "Bearer",
- "expires_in": 3600
}
As an partner you can create additional Quickr customer accounts associated with you partner account.
You must use separate Quickr accounts for customers that operate independently from one another. When you activate a new account, it is subject to Quickr's standard policies and pricing.
Create customer accounts for a partner account
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
object Set of key-value pairs that you can attach to an object.
Individual keys can be unset by posting an empty value to them.
All keys can be unset by posting an empty value to | |
object Subscription for the account | |
type | string (AccountType) Enum: "customer" "partner" "reseller" |
status | string (AccountStatus) Enum: "ACTIVE" "INACTIVE" "PENDING" |
object (Branding) Customize the look and feel of pages and templates, such as the Quickr declaration page and email templates | |
object (AccountCompanyDetails) | |
object (AccountBillingDetails) | |
Array of objects (AccountContact) | |
object (AccountUrls) | |
Array of objects (AccountEmailUserData) Users to invite access to | |
actions | Array of strings Items Value: "send_invite" The action to perform when the account is created
|
Array of objects The account's representative acceptances to agreements and policies | |
Array of objects Account managers responsible for the account | |
name | string The name of the account |
object (AccountSettings) |
{- "metadata": {
- "property1": "string",
- "property2": "string"
}, - "subscription": {
- "enabled": [
- {
- "product_id": "string",
- "discount": {
- "type": "percent",
- "value": 0
}, - "commitment": {
- "duration": "P0D",
- "start_date": "2019-08-24T14:15:22Z"
}
}
], - "products": [
- {
- "product_id": "string",
- "name": "string",
- "description": "string",
- "prices": [
- "string"
], - "plans": [
- {
- "id": "string",
- "name": "string"
}
], - "discount": {
- "type": "max_percent",
- "value": 0
}
}
]
}, - "type": "customer",
- "status": "ACTIVE",
- "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "company": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "trade_name": "string",
- "organization_number": "string",
- "country": "NO"
}, - "billing": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "reference": "string"
}, - "contacts": [
- {
- "type": "billing",
- "email": "user@example.com",
- "phone_number": "string",
- "name": "John Doe",
- "preferred": "email"
}
], - "invites": [
- {
- "name": "John Doe",
- "avatar": {
- "id": "PQ1230483.file.1493019345",
}, - "email": "user@example.com",
- "phone_number": "string",
- "scope": [
- "read:quickr",
- "write:quickr"
]
}
], - "actions": [
- "send_invite"
], - "acceptances": [
- {
- "name": "Privacy Policy",
- "acceptance_at": "2019-08-24T14:15:22Z"
}
], - "managers": [
- {
- "role": "primary",
- "email": "user@example.com"
}
], - "name": "string",
- "settings": {
- "inspect_mode": {
- "permissions": [
- "read"
]
}
}
}
{- "object": "account",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "metadata": {
- "property1": "string",
- "property2": "string"
}, - "subscription": {
- "enabled": [
- {
- "created_at": "2019-08-24T14:15:22Z",
- "created_by": "2019-08-24T14:15:22Z",
- "product_id": "string",
- "discount": {
- "type": "percent",
- "value": 0
}, - "commitment": {
- "duration": "P0D",
- "start_date": "2019-08-24T14:15:22Z"
}
}
], - "products": [
- {
- "product_id": "string",
- "name": "string",
- "description": "string",
- "prices": [
- "string"
], - "plans": [
- {
- "id": "string",
- "name": "string"
}
], - "discount": {
- "type": "max_percent",
- "value": 0
}
}
]
}, - "type": "customer",
- "status": "ACTIVE",
- "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "background": {
- "id": "PQ1230483.file.logo.1493019345",
},
}
}, - "company": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "trade_name": "string",
- "organization_number": "string",
- "country": "NO"
}, - "billing": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "reference": "string"
}, - "contacts": [
- {
- "type": "billing",
- "email": "user@example.com",
- "phone_number": "string",
- "name": "John Doe",
- "preferred": "email"
}
], - "invites": [
- {
- "name": "John Doe",
- "avatar": {
- "id": "PQ1230483.file.1493019345",
}, - "email": "user@example.com",
- "phone_number": "string",
- "scope": [
- "read:quickr",
- "write:quickr"
]
}
], - "actions": [
- "send_invite"
], - "acceptances": [
- {
- "name": "Privacy Policy",
- "acceptance_at": "2019-08-24T14:15:22Z"
}
], - "managers": [
- {
- "role": "primary",
- "email": "user@example.com"
}
], - "name": "string",
- "settings": {
- "inspect_mode": {
- "permissions": [
- "read"
]
}
}, - "id": "Q1230483",
- "account_id": "PQ1230483",
- "partner": {
- "id": "Q1230483",
- "account_id": "PQ1230483",
- "type": "partner"
}
}
Get the accounts for an partner account
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
starting_after | string A cursor for use in pagination. |
limit | integer [ 1 .. 100 ] Default: 10 A limit on the number of objects to be returned |
search | string Search for accounts by filter on company name, organization number and account id |
status | Array of strings Items Enum: "ACTIVE" "INACTIVE" "PENDING" Filter data by |
type | Array of strings Items Enum: "customer" "partner" "reseller" Filter data by |
country | Array of strings Items Enum: "NO" "SE" Filter data by |
created_by | Array of strings Filter data by |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
{- "data": [
- {
- "object": "account",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "metadata": {
- "property1": "string",
- "property2": "string"
}, - "subscription": {
- "enabled": [
- {
- "created_at": "2019-08-24T14:15:22Z",
- "created_by": "2019-08-24T14:15:22Z",
- "product_id": "string",
- "discount": {
- "type": "percent",
- "value": 0
}, - "commitment": {
- "duration": "P0D",
- "start_date": "2019-08-24T14:15:22Z"
}
}
], - "products": [
- {
- "product_id": "string",
- "name": "string",
- "description": "string",
- "prices": [
- "string"
], - "plans": [
- {
- "id": "string",
- "name": "string"
}
], - "discount": {
- "type": "max_percent",
- "value": 0
}
}
]
}, - "type": "customer",
- "status": "ACTIVE",
- "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "background": {
- "id": "PQ1230483.file.logo.1493019345",
},
}
}, - "company": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "trade_name": "string",
- "organization_number": "string",
- "country": "NO"
}, - "billing": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "reference": "string"
}, - "contacts": [
- {
- "type": "billing",
- "email": "user@example.com",
- "phone_number": "string",
- "name": "John Doe",
- "preferred": "email"
}
], - "invites": [
- {
- "name": "John Doe",
- "avatar": {
- "id": "PQ1230483.file.1493019345",
}, - "email": "user@example.com",
- "phone_number": "string",
- "scope": [
- "read:quickr",
- "write:quickr"
]
}
], - "actions": [
- "send_invite"
], - "acceptances": [
- {
- "name": "Privacy Policy",
- "acceptance_at": "2019-08-24T14:15:22Z"
}
], - "managers": [
- {
- "role": "primary",
- "email": "user@example.com"
}
], - "name": "string",
- "settings": {
- "inspect_mode": {
- "permissions": [
- "read"
]
}
}, - "id": "Q1230483",
- "account_id": "PQ1230483",
- "partner": {
- "id": "Q1230483",
- "account_id": "PQ1230483",
- "type": "partner"
}
}
], - "pagination": {
- "cursor": "string"
}
}
Update customer accounts or partner account
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
object Set of key-value pairs that you can attach to an object.
Individual keys can be unset by posting an empty value to them.
All keys can be unset by posting an empty value to | |
object (Branding) Customize the look and feel of pages and templates, such as the Quickr declaration page and email templates | |
object (AccountCompanyDetails) | |
object (AccountBillingDetails) | |
Array of objects (AccountContact) | |
object (AccountUrls) | |
Array of objects Account managers responsible for the account | |
name | string The name of the account |
{- "metadata": {
- "property1": "string",
- "property2": "string"
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "company": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "trade_name": "string",
- "organization_number": "string",
- "country": "NO"
}, - "billing": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "reference": "string"
}, - "contacts": [
- {
- "type": "billing",
- "email": "user@example.com",
- "phone_number": "string",
- "name": "John Doe",
- "preferred": "email"
}
], - "managers": [
- {
- "role": "primary",
- "email": "user@example.com"
}
], - "name": "string"
}
{- "object": "account",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "metadata": {
- "property1": "string",
- "property2": "string"
}, - "subscription": {
- "enabled": [
- {
- "created_at": "2019-08-24T14:15:22Z",
- "created_by": "2019-08-24T14:15:22Z",
- "product_id": "string",
- "discount": {
- "type": "percent",
- "value": 0
}, - "commitment": {
- "duration": "P0D",
- "start_date": "2019-08-24T14:15:22Z"
}
}
], - "products": [
- {
- "product_id": "string",
- "name": "string",
- "description": "string",
- "prices": [
- "string"
], - "plans": [
- {
- "id": "string",
- "name": "string"
}
], - "discount": {
- "type": "max_percent",
- "value": 0
}
}
]
}, - "type": "customer",
- "status": "ACTIVE",
- "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "background": {
- "id": "PQ1230483.file.logo.1493019345",
},
}
}, - "company": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "trade_name": "string",
- "organization_number": "string",
- "country": "NO"
}, - "billing": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "reference": "string"
}, - "contacts": [
- {
- "type": "billing",
- "email": "user@example.com",
- "phone_number": "string",
- "name": "John Doe",
- "preferred": "email"
}
], - "invites": [
- {
- "name": "John Doe",
- "avatar": {
- "id": "PQ1230483.file.1493019345",
}, - "email": "user@example.com",
- "phone_number": "string",
- "scope": [
- "read:quickr",
- "write:quickr"
]
}
], - "actions": [
- "send_invite"
], - "acceptances": [
- {
- "name": "Privacy Policy",
- "acceptance_at": "2019-08-24T14:15:22Z"
}
], - "managers": [
- {
- "role": "primary",
- "email": "user@example.com"
}
], - "name": "string",
- "settings": {
- "inspect_mode": {
- "permissions": [
- "read"
]
}
}, - "id": "Q1230483",
- "account_id": "PQ1230483",
- "partner": {
- "id": "Q1230483",
- "account_id": "PQ1230483",
- "type": "partner"
}
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
object Subscription for the account | |
type | string (AccountType) Enum: "customer" "partner" "reseller" |
status | string (AccountStatus) Enum: "ACTIVE" "INACTIVE" "PENDING" |
{- "subscription": {
- "enabled": [
- {
- "product_id": "string",
- "discount": {
- "type": "percent",
- "value": 0
}, - "commitment": {
- "duration": "P0D",
- "start_date": "2019-08-24T14:15:22Z"
}
}
], - "products": [
- {
- "product_id": "string",
- "name": "string",
- "description": "string",
- "prices": [
- "string"
], - "plans": [
- {
- "id": "string",
- "name": "string"
}
], - "discount": {
- "type": "max_percent",
- "value": 0
}
}
]
}, - "type": "customer",
- "status": "ACTIVE"
}
{- "object": "account",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "metadata": {
- "property1": "string",
- "property2": "string"
}, - "subscription": {
- "enabled": [
- {
- "created_at": "2019-08-24T14:15:22Z",
- "created_by": "2019-08-24T14:15:22Z",
- "product_id": "string",
- "discount": {
- "type": "percent",
- "value": 0
}, - "commitment": {
- "duration": "P0D",
- "start_date": "2019-08-24T14:15:22Z"
}
}
], - "products": [
- {
- "product_id": "string",
- "name": "string",
- "description": "string",
- "prices": [
- "string"
], - "plans": [
- {
- "id": "string",
- "name": "string"
}
], - "discount": {
- "type": "max_percent",
- "value": 0
}
}
]
}, - "type": "customer",
- "status": "ACTIVE",
- "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "background": {
- "id": "PQ1230483.file.logo.1493019345",
},
}
}, - "company": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "trade_name": "string",
- "organization_number": "string",
- "country": "NO"
}, - "billing": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "reference": "string"
}, - "contacts": [
- {
- "type": "billing",
- "email": "user@example.com",
- "phone_number": "string",
- "name": "John Doe",
- "preferred": "email"
}
], - "invites": [
- {
- "name": "John Doe",
- "avatar": {
- "id": "PQ1230483.file.1493019345",
}, - "email": "user@example.com",
- "phone_number": "string",
- "scope": [
- "read:quickr",
- "write:quickr"
]
}
], - "actions": [
- "send_invite"
], - "acceptances": [
- {
- "name": "Privacy Policy",
- "acceptance_at": "2019-08-24T14:15:22Z"
}
], - "managers": [
- {
- "role": "primary",
- "email": "user@example.com"
}
], - "name": "string",
- "settings": {
- "inspect_mode": {
- "permissions": [
- "read"
]
}
}, - "id": "Q1230483",
- "account_id": "PQ1230483",
- "partner": {
- "id": "Q1230483",
- "account_id": "PQ1230483",
- "type": "partner"
}
}
Retrieve details about the logged-in user
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
{- "object": "userinfo",
- "email": "user@example.com",
- "accounts": [
- {
- "account_id": "PQ1230483",
- "name": "TKP tech AS",
- "company": {
- "address_line": "string",
- "address_line_2": "string",
- "address_postal_code": "string",
- "address_city": "string",
- "address_country": "NO",
- "name": "string",
- "trade_name": "string",
- "organization_number": "string",
- "country": "NO"
}, - "branding": {
- "images": {
}
}, - "userinfo": {
- "id": "email.WDVBZEX",
- "name": "John Doe",
- "avatar": {
- "id": "PQ1230483.file.1493019345",
}, - "scope": [
- "string"
]
}
}
]
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
type required | string |
scope required | Array of strings |
name | string |
{- "name": "my-api-key",
- "type": "api_key",
- "scope": [
- "read:quickr",
- "write:quickr"
]
}
{- "name": "my-api-key",
- "type": "api_key",
- "scope": [
- "read:quickr",
- "write:quickr"
], - "id": "api.WDVBZEX",
- "object": "user",
- "account_id": "PQ1230483",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "last_seen_at": "2019-08-24T14:15:22Z",
- "api_key": "string"
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
starting_after | string A cursor for use in pagination. |
limit | integer [ 1 .. 100 ] Default: 10 A limit on the number of objects to be returned |
type | Array of strings Type of the user object to return. If not specified, all types of users will be returned.
If specified, the value must be one of the following: |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
{- "data": [
- {
- "name": "string",
- "type": "email",
- "scope": [
- "read:quickr",
- "write:quickr"
], - "id": "email.WDVBZEX",
- "object": "user",
- "account_id": "PQ1230483",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "last_seen_at": "2019-08-24T14:15:22Z"
}
], - "pagination": {
- "cursor": "string"
}
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
uid required | string <uuid> Example: email.WDVBZEX An id that uniquely identifies the user of an account |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
name | string |
scope | Array of strings Updating the scope requires |
phone_number | string <E.123> (PhoneNumber) Phone number, ITU/E.123 format with international prefix (+PPNNNNNNNNN...) |
object (AvatarInput) An avatar image for the resource |
{- "name": "John Doe",
- "scope": [
- "read:quickr",
- "write:quickr"
], - "phone_number": "string",
- "avatar": {
- "id": "PQ1230483.file.1493019345"
}, - "type": "email"
}
{- "name": "my-api-key",
- "type": "api_key",
- "scope": [
- "read:quickr",
- "write:quickr"
], - "id": "api.WDVBZEX",
- "object": "user",
- "account_id": "PQ1230483",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "last_seen_at": "2019-08-24T14:15:22Z",
- "api_key": "string"
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
uid required | string <uuid> Example: email.WDVBZEX An id that uniquely identifies the user of an account |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
{- "name": "my-api-key",
- "type": "api_key",
- "scope": [
- "read:quickr",
- "write:quickr"
], - "id": "api.WDVBZEX",
- "object": "user",
- "account_id": "PQ1230483",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "last_seen_at": "2019-08-24T14:15:22Z",
- "api_key": "string"
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
type required | string Value: "case" |
name required | string |
required | object Case template configuration |
description | string |
object Set of key-value pairs that you can attach to an object.
Individual keys can be unset by posting an empty value to them.
All keys can be unset by posting an empty value to |
{- "type": "case",
- "name": "string",
- "description": "string",
- "case": {
- "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345"
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "agreement",
- "data": [
- { }
]
}
], - "sections": [
- {
- "type": "agreement"
}
], - "checks": [
- {
- "options": {
- "schedule": "R-1/P1D"
}, - "type": "agreement"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}
}, - "metadata": {
- "property1": "string",
- "property2": "string"
}
}
{- "object": "template",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "id": "PQ1230483.template.493019345",
- "account_id": "PQ1230483",
- "type": "case",
- "name": "string",
- "description": "string",
- "case": {
- "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345"
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "agreement",
- "data": [
- {
- "id": "string"
}
]
}
], - "sections": [
- {
- "type": "agreement"
}
], - "checks": [
- {
- "options": {
- "schedule": "R-1/P1D",
- "next_schedules": [
- "2019-08-24T14:15:22Z"
]
}, - "type": "agreement"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}
}, - "metadata": {
- "property1": "string",
- "property2": "string"
}
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
starting_after | string A cursor for use in pagination. |
limit | integer [ 1 .. 100 ] Default: 10 A limit on the number of objects to be returned |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
{- "data": [
- {
- "object": "template",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "id": "PQ1230483.template.493019345",
- "account_id": "PQ1230483",
- "type": "case",
- "name": "string",
- "description": "string",
- "case": {
- "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345"
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "agreement",
- "data": [
- {
- "id": "string"
}
]
}
], - "sections": [
- {
- "type": "agreement"
}
], - "checks": [
- {
- "options": {
- "schedule": "R-1/P1D",
- "next_schedules": [
- "2019-08-24T14:15:22Z"
]
}, - "type": "agreement"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}
}, - "metadata": {
- "property1": "string",
- "property2": "string"
}
}
], - "pagination": {
- "cursor": "string"
}
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
tid required | string^[PT]Q\d{7}\.template.*$ Example: PQ1230483.template.493019345 An id that uniquely identifies the template |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
{- "object": "template",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "id": "PQ1230483.template.493019345",
- "account_id": "PQ1230483",
- "type": "case",
- "name": "string",
- "description": "string",
- "case": {
- "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345"
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "agreement",
- "data": [
- {
- "id": "string"
}
]
}
], - "sections": [
- {
- "type": "agreement"
}
], - "checks": [
- {
- "options": {
- "schedule": "R-1/P1D",
- "next_schedules": [
- "2019-08-24T14:15:22Z"
]
}, - "type": "agreement"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}
}, - "metadata": {
- "property1": "string",
- "property2": "string"
}
}
Updating a template will not update existing cases created by the template
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
tid required | string^[PT]Q\d{7}\.template.*$ Example: PQ1230483.template.493019345 An id that uniquely identifies the template |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
type required | string Value: "case" |
name required | string |
required | object Case template configuration |
description | string |
object Set of key-value pairs that you can attach to an object.
Individual keys can be unset by posting an empty value to them.
All keys can be unset by posting an empty value to |
{- "type": "case",
- "name": "string",
- "description": "string",
- "case": {
- "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345"
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "agreement",
- "data": [
- { }
]
}
], - "sections": [
- {
- "type": "agreement"
}
], - "checks": [
- {
- "options": {
- "schedule": "R-1/P1D"
}, - "type": "agreement"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}
}, - "metadata": {
- "property1": "string",
- "property2": "string"
}
}
{- "object": "template",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "id": "PQ1230483.template.493019345",
- "account_id": "PQ1230483",
- "type": "case",
- "name": "string",
- "description": "string",
- "case": {
- "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345"
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "agreement",
- "data": [
- {
- "id": "string"
}
]
}
], - "sections": [
- {
- "type": "agreement"
}
], - "checks": [
- {
- "options": {
- "schedule": "R-1/P1D",
- "next_schedules": [
- "2019-08-24T14:15:22Z"
]
}, - "type": "agreement"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}
}, - "metadata": {
- "property1": "string",
- "property2": "string"
}
}
Deleting a template will not delete cases create by the template
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
tid required | string^[PT]Q\d{7}\.template.*$ Example: PQ1230483.template.493019345 An id that uniquely identifies the template |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
{- "object": "template",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "id": "PQ1230483.template.493019345",
- "account_id": "PQ1230483",
- "type": "case",
- "name": "string",
- "description": "string",
- "case": {
- "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345"
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "agreement",
- "data": [
- {
- "id": "string"
}
]
}
], - "sections": [
- {
- "type": "agreement"
}
], - "checks": [
- {
- "options": {
- "schedule": "R-1/P1D",
- "next_schedules": [
- "2019-08-24T14:15:22Z"
]
}, - "type": "agreement"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}
}, - "metadata": {
- "property1": "string",
- "property2": "string"
}
}
Seamless and automatic Customer Due Diligence (CDD) checks and Ongoing Die Diligence (ODD) checks.
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
object Template configuration | |
object (PublisherCreateData) | |
reference | string (CaseReference) Reference specified by the creator to identify the case in external systems |
Array of objects (Prefill) Prefills provided by case creator to prefill the declaration form | |
Array of objects (Section) non-empty Sections to include in the declaration form | |
Array of objects non-empty Checks to perform | |
object (CaseUrls) The URLs object containing the urls used for this case | |
object Set of key-value pairs that you can attach to an object.
Individual keys can be unset by posting an empty value to them.
All keys can be unset by posting an empty value to |
{- "template": {
- "id": "PQ1230483.template.493019345"
}, - "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345"
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "bank_account",
- "data": [
- {
- "number": "86011117947",
- "type": "iban",
- "currency": "NOK",
- "country": "NO",
- "bank_name": "DNB Bank",
- "bank_identification_code": "459508"
}
]
}, - {
- "type": "company",
- "data": [
- {
- "name": "Dintero AS",
- "trade_name": "Dintero",
- "organization_number": "919656395",
- "country": "NO",
- "address_line": "Sandakerveien 138",
- "address_postal_code": "0484",
- "address_city": "Oslo"
}
]
}, - {
- "type": "payment_information",
- "data": [
- {
- "average_transaction_value": "301-601",
- "most_expensive_product_price": "1000",
- "projected_sales": "4000",
- "gift_card": false,
- "gift_card_revenue_percentage": 0,
- "subscriptions": false,
- "subscriptions_revenue_percentage": 0,
- "international_sales": true,
- "international_sales_tax": true,
- "international_sales_tax_revenue_percentage": 24.5,
- "merchant_category_code": "7372",
- "payment_purpose": "Subscription of computer services",
}
]
}, - {
- "type": "product_service",
- "data": [
- {
- "product_id": "pid1",
- "name": "Product name",
- "description": "Product description",
- "prices": [
- "1.55% + 1kr (EU consumer cards)",
- "2.95% + 1kr (Non-EU consumer cards)"
]
}
]
}, - {
- "type": "ultimate_beneficial_ownership",
- "data": [
- {
- "name": "John Doe",
- "country": "NO",
- "birth_date": "1984-03-27",
- "percent_shares": 24.4,
- "other_factor": false,
- "other_factor_reason": false,
- "confirm_correct": false
}
]
}, - {
- "type": "politically_exposed_person",
- "data": [
- {
- "politically_exposed_person": false,
- "affiliated_to_politically_exposed_person": false
}
]
}, - {
- "type": "signatory",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO",
- "country": "NO"
}
]
}, - {
- "type": "form_submitter",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO"
}
]
}, - {
- "type": "credit_score",
- "data": [
- {
- "credit_limit": 10000,
- "credit_limit_currency": "NOK",
- "current_credit_score": {
- "grade": "A",
- "value": 100
}, - "previous_credit_score": {
- "grade": "A",
- "value": 100
}, - "payment_remarks": "No payment remarks"
}
]
}
], - "sections": [
- {
- "type": "company"
}, - {
- "type": "bank_account"
}, - {
- "type": "payment_information"
}, - {
- "type": "ultimate_beneficial_ownership"
}, - {
- "type": "signatory"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "product_service"
}, - {
- "type": "agreement"
}, - {
- "type": "form_submitter"
}
], - "checks": [
- {
- "type": "company",
- "options": {
- "schedule": "R-1/P1Y"
}
}, - {
- "type": "bank_account"
}, - {
- "type": "ultimate_beneficial_ownership"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "sanction"
}, - {
- "type": "signatory"
}, - {
- "type": "agreement"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}
}
{- "object": "case",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "template": {
- "id": "PQ1230483.template.493019345",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345",
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "background": {
- "id": "PQ1230483.file.logo.1493019345",
},
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "bank_account",
- "data": [
- {
- "number": "86011117947",
- "type": "iban",
- "currency": "NOK",
- "country": "NO",
- "bank_name": "DNB Bank",
- "bank_identification_code": "459508"
}
]
}, - {
- "type": "company",
- "data": [
- {
- "name": "Dintero AS",
- "trade_name": "Dintero",
- "organization_number": "919656395",
- "country": "NO",
- "address_line": "Sandakerveien 138",
- "address_postal_code": "0484",
- "address_city": "Oslo"
}
]
}, - {
- "type": "payment_information",
- "data": [
- {
- "average_transaction_value": "301-601",
- "most_expensive_product_price": "1000",
- "projected_sales": "4000",
- "gift_card": false,
- "gift_card_revenue_percentage": 0,
- "subscriptions": false,
- "subscriptions_revenue_percentage": 0,
- "international_sales": true,
- "international_sales_tax": true,
- "international_sales_tax_revenue_percentage": 24.5,
- "merchant_category_code": "7372",
- "payment_purpose": "Subscription of computer services",
}
]
}, - {
- "type": "product_service",
- "data": [
- {
- "product_id": "pid1",
- "name": "Product name",
- "description": "Product description",
- "prices": [
- "1.55% + 1kr (EU consumer cards)",
- "2.95% + 1kr (Non-EU consumer cards)"
]
}
]
}, - {
- "type": "ultimate_beneficial_ownership",
- "data": [
- {
- "name": "John Doe",
- "country": "NO",
- "birth_date": "1984-03-27",
- "percent_shares": 24.4,
- "other_factor": false,
- "other_factor_reason": false,
- "confirm_correct": false
}
]
}, - {
- "type": "politically_exposed_person",
- "data": [
- {
- "politically_exposed_person": false,
- "affiliated_to_politically_exposed_person": false
}
]
}, - {
- "type": "signatory",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO",
- "country": "NO"
}
]
}, - {
- "type": "form_submitter",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO"
}
]
}, - {
- "type": "credit_score",
- "data": [
- {
- "credit_limit": 10000,
- "credit_limit_currency": "NOK",
- "current_credit_score": {
- "grade": "A",
- "value": 100
}, - "previous_credit_score": {
- "grade": "A",
- "value": 100
}, - "payment_remarks": "No payment remarks"
}
]
}
], - "sections": [
- {
- "type": "company"
}, - {
- "type": "bank_account"
}, - {
- "type": "payment_information"
}, - {
- "type": "ultimate_beneficial_ownership"
}, - {
- "type": "signatory"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "product_service"
}, - {
- "type": "agreement"
}, - {
- "type": "form_submitter"
}
], - "checks": [
- {
- "type": "company",
- "options": {
- "schedule": "R-1/P1Y"
}
}, - {
- "type": "bank_account"
}, - {
- "type": "ultimate_beneficial_ownership"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "sanction"
}, - {
- "type": "signatory"
}, - {
- "type": "agreement"
}
], - "urls": {
}, - "metadata": {
- "property1": "string",
- "property2": "string"
}, - "id": "PQ1230485.493019345",
- "account_id": "PQ1230483",
- "status": "FORM_NOT_STARTED",
- "assignees": [
- {
- "user_id": "email.WDVBZEX",
- "object": "assignee",
- "account_id": "PQ1230483",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z"
}
], - "risk_level": "LOW",
- "agent_determined_risk_level": "LOW",
- "agent_determined_status": "ACTIVE",
- "status_updated_at": "2019-08-24T14:15:22Z",
- "discoveries": [
- {
- "type": "credit_score",
- "data": [
- {
- "id": "string",
- "created_at": "string",
- "created_by": "string"
}
]
}
], - "declared_at": "2019-08-24T14:15:22Z",
- "form_submitter": {
- "name": "string",
- "birth_date": "2019-08-24",
- "email": "user@example.com",
- "title": "string"
}
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
starting_after | string A cursor for use in pagination. |
limit | integer [ 1 .. 100 ] Default: 10 A limit on the number of objects to be returned |
search | string A query to filter cases by case reference, case ID, company name or organization number |
status | Array of strings A query to filter cases by status. Available values include |
agent_determined_risk_level | Array of strings A query to filter cases by risk level. Available values include |
assignee | Array of strings Example: assignee=email.WDVBZEX A query to filter cases by the assignee id. |
failed_checks | Array of strings A query to filter cases by failed checks. Available values include |
country | Array of strings Items Enum: "NO" "SE" Filter data by |
sort_by | string Default: "status_updated_at" Enum: "status_updated_at" "created_at" Sort data by given field |
sort_order | string Default: "DESC" Enum: "DESC" "ASC" Sort data by given order |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
{- "data": [
- {
- "checks": [
- {
- "type": "company",
- "status": "IN_PROGRESS",
- "options": {
- "schedule": "R-1/P1Y"
}
}, - {
- "type": "bank_account",
- "status": "COMPLETED"
}, - {
- "type": "ultimate_beneficial_ownership",
- "status": "FAILED"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "sanction"
}, - {
- "type": "signatory"
}, - {
- "type": "agreement"
}
], - "object": "case",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "template": {
- "id": "PQ1230483.template.493019345",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345",
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "background": {
- "id": "PQ1230483.file.logo.1493019345",
},
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "bank_account",
- "data": [
- {
- "number": "86011117947",
- "type": "iban",
- "currency": "NOK",
- "country": "NO",
- "bank_name": "DNB Bank",
- "bank_identification_code": "459508"
}
]
}, - {
- "type": "company",
- "data": [
- {
- "name": "Dintero AS",
- "trade_name": "Dintero",
- "organization_number": "919656395",
- "country": "NO",
- "address_line": "Sandakerveien 138",
- "address_postal_code": "0484",
- "address_city": "Oslo"
}
]
}, - {
- "type": "payment_information",
- "data": [
- {
- "average_transaction_value": "301-601",
- "most_expensive_product_price": "1000",
- "projected_sales": "4000",
- "gift_card": false,
- "gift_card_revenue_percentage": 0,
- "subscriptions": false,
- "subscriptions_revenue_percentage": 0,
- "international_sales": true,
- "international_sales_tax": true,
- "international_sales_tax_revenue_percentage": 24.5,
- "merchant_category_code": "7372",
- "payment_purpose": "Subscription of computer services",
}
]
}, - {
- "type": "product_service",
- "data": [
- {
- "product_id": "pid1",
- "name": "Product name",
- "description": "Product description",
- "prices": [
- "1.55% + 1kr (EU consumer cards)",
- "2.95% + 1kr (Non-EU consumer cards)"
]
}
]
}, - {
- "type": "ultimate_beneficial_ownership",
- "data": [
- {
- "name": "John Doe",
- "country": "NO",
- "birth_date": "1984-03-27",
- "percent_shares": 24.4,
- "other_factor": false,
- "other_factor_reason": false,
- "confirm_correct": false
}
]
}, - {
- "type": "politically_exposed_person",
- "data": [
- {
- "politically_exposed_person": false,
- "affiliated_to_politically_exposed_person": false
}
]
}, - {
- "type": "signatory",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO",
- "country": "NO"
}
]
}, - {
- "type": "form_submitter",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO"
}
]
}, - {
- "type": "credit_score",
- "data": [
- {
- "credit_limit": 10000,
- "credit_limit_currency": "NOK",
- "current_credit_score": {
- "grade": "A",
- "value": 100
}, - "previous_credit_score": {
- "grade": "A",
- "value": 100
}, - "payment_remarks": "No payment remarks"
}
]
}
], - "sections": [
- {
- "type": "company"
}, - {
- "type": "bank_account"
}, - {
- "type": "payment_information"
}, - {
- "type": "ultimate_beneficial_ownership"
}, - {
- "type": "signatory"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "product_service"
}, - {
- "type": "agreement"
}, - {
- "type": "form_submitter"
}
], - "urls": {
}, - "metadata": {
- "property1": "string",
- "property2": "string"
}, - "id": "PQ1230485.493019345",
- "account_id": "PQ1230483",
- "status": "FORM_NOT_STARTED",
- "assignees": [
- {
- "user_id": "email.WDVBZEX",
- "object": "assignee",
- "account_id": "PQ1230483",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z"
}
], - "risk_level": "LOW",
- "agent_determined_risk_level": "LOW",
- "agent_determined_status": "ACTIVE",
- "status_updated_at": "2019-08-24T14:15:22Z",
- "discoveries": [
- {
- "type": "credit_score",
- "data": [
- {
- "id": "string",
- "created_at": "string",
- "created_by": "string"
}
]
}
], - "declared_at": "2019-08-24T14:15:22Z",
- "form_submitter": {
- "name": "string",
- "birth_date": "2019-08-24",
- "email": "user@example.com",
- "title": "string"
}
}
], - "pagination": {
- "cursor": "string"
}
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
cid required | string = 19 characters ^[PT]Q\d{7}\.\S{9}$ Example: PQ1234567.ABCDEFGHI An id that uniquely identifies the case |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
{- "prefills": [
- {
- "type": "bank_account",
- "data": [
- {
- "number": "86011117947",
- "type": "iban",
- "currency": "NOK",
- "country": "NO",
- "bank_name": "DNB Bank",
- "bank_identification_code": "459508"
}
]
}, - {
- "type": "company",
- "data": [
- {
- "name": "Dintero AS",
- "trade_name": "Dintero",
- "organization_number": "919656395",
- "country": "NO",
- "address_line": "Sandakerveien 138",
- "address_postal_code": "0484",
- "address_city": "Oslo"
}
]
}, - {
- "type": "payment_information",
- "data": [
- {
- "average_transaction_value": "301-601",
- "most_expensive_product_price": "1000",
- "projected_sales": "4000",
- "gift_card": false,
- "gift_card_revenue_percentage": 0,
- "subscriptions": false,
- "subscriptions_revenue_percentage": 0,
- "international_sales": true,
- "international_sales_tax": true,
- "international_sales_tax_revenue_percentage": 24.5,
- "merchant_category_code": "7372",
- "payment_purpose": "Subscription of computer services",
}
]
}, - {
- "type": "product_service",
- "data": [
- {
- "product_id": "pid1",
- "name": "Product name",
- "description": "Product description",
- "prices": [
- "1.55% + 1kr (EU consumer cards)",
- "2.95% + 1kr (Non-EU consumer cards)"
]
}
]
}, - {
- "type": "ultimate_beneficial_ownership",
- "data": [
- {
- "name": "John Doe",
- "country": "NO",
- "birth_date": "1984-03-27",
- "percent_shares": 24.4,
- "other_factor": false,
- "other_factor_reason": false,
- "confirm_correct": false
}
]
}, - {
- "type": "politically_exposed_person",
- "data": [
- {
- "politically_exposed_person": false,
- "affiliated_to_politically_exposed_person": false
}
]
}, - {
- "type": "signatory",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO",
- "country": "NO"
}
]
}, - {
- "type": "form_submitter",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO"
}
]
}, - {
- "type": "credit_score",
- "data": [
- {
- "credit_limit": 10000,
- "credit_limit_currency": "NOK",
- "current_credit_score": {
- "grade": "A",
- "value": 100
}, - "previous_credit_score": {
- "grade": "A",
- "value": 100
}, - "payment_remarks": "No payment remarks"
}
]
}
], - "sections": [
- {
- "type": "company",
- "additional_data": [
- {
- "type": "swedish_company",
- "status": "ACTIVE",
- "registration_date": "2019-01-01",
- "is_an_enterprise": true,
- "number_of_employees": 10,
- "incorporation_date": "2019-01-01",
- "industry_sector_code": "12345",
- "industry_sector_description": [
- {
- "value": "Manufacture of machinery and equipment n.e.c.",
- "language": "en"
}
], - "auditor": [
- {
- "name": "AUDITOR INC",
- "role": "AUDITOR",
- "country": "SE",
- "organization_number": "1234567890"
}
], - "industry_sectors": [
- {
- "code": "12345",
- "description": [
- {
- "value": "Manufacture of machinery and equipment n.e.c.",
- "language": "en"
}
]
}
]
}
]
}, - {
- "type": "bank_account"
}, - {
- "type": "payment_information"
}, - {
- "type": "ultimate_beneficial_ownership",
- "ubo_graph": [
- {
- "type": "person_node",
- "id": "329271286081",
- "name": "DOE JOHN",
- "birth_date": "1982",
- "country": "NO",
- "percent_controlling_shares": 66.2
}, - {
- "type": "organization_node",
- "id": "324409412305",
- "name": "DINTERO HOLDING AS",
- "organization_number": "898467732",
- "sink": false,
- "parents": [
- {
- "id": "329271286081",
- "percent_shares": 100,
- "share_type": "Ordinære aksjer"
}
]
}, - {
- "type": "organization_node",
- "id": "328508181229",
- "name": "DINTERO AS",
- "organization_number": "919656395",
- "sink": true,
- "parents": [
- {
- "id": "324409412305",
- "percent_shares": 66.2,
- "share_type": "Ordinære aksjer"
}
]
}
]
}, - {
- "type": "signatory"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "product_service"
}, - {
- "type": "agreement"
}, - {
- "type": "form_submitter"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}, - "object": "case",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "id": "PQ1230485.493019345",
- "template": {
- "id": "PQ1230483.template.493019345",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "account_id": "PQ1230483",
- "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345",
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "background": {
- "id": "PQ1230483.file.logo.1493019345",
},
}
}, - "language": "en"
}, - "status": "FORM_NOT_STARTED",
- "assignees": [
- {
- "user_id": "email.WDVBZEX",
- "object": "assignee",
- "account_id": "PQ1230483",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z"
}
], - "risk_level": "LOW",
- "agent_determined_risk_level": "LOW",
- "agent_determined_status": "ACTIVE",
- "status_updated_at": "2019-08-24T14:15:22Z",
- "discoveries": [
- {
- "type": "credit_score",
- "data": [
- {
- "id": "string",
- "created_at": "string",
- "created_by": "string"
}
]
}
], - "declared_at": "2019-08-24T14:15:22Z",
- "contracts": [
- {
- "type": "unsigned",
- "data": [
- {
- "id": "db877e5f-73ab-486a-99fa-4491b41a82d6",
- "signatory": {
- "name": "Bob Frank",
- "birth_date": "1974-10-02",
- "email": "bob@example.dintero.com",
- "title": "CEO"
}, - "status": "unsigned",
- "expires_at": "2033-05-18T00:46:40.003Z",
}
]
}, - {
- "type": "signed",
- "data": [
- {
- "id": "a3e83175-10e4-418b-a9f7-18415aaf3b00",
- "signatory": {
- "name": "Make Sav",
- "birth_date": "1988-12-29",
- "email": "make.sav.doe@example.dintero.com",
- "title": ""
}, - "created_at": "2022-11-24T16:14:47.405Z",
- "method": "BANKID",
- "status": "signed",
}
]
}
], - "declarations": [
- {
- "type": "company",
- "data": [
- {
- "name": "Dintero AS",
- "trade_name": "Dintero",
- "organization_number": "919656395",
- "country": "NO",
- "address_line": "Sandakerveien 138",
- "address_postal_code": "0484",
- "address_city": "Oslo"
}
]
}, - {
- "type": "bank_account",
- "data": [
- {
- "number": "86011117947",
- "type": "iban",
- "currency": "NOK",
- "country": "NO",
- "bank_name": "DNB Bank",
- "bank_identification_code": "459508"
}
]
}, - {
- "type": "product_service",
- "data": [
- {
- "product_id": "pid1",
- "name": "Product name",
- "description": "Product description",
- "prices": [
- "1.55% + 1kr (EU consumer cards)",
- "2.95% + 1kr (Non-EU consumer cards)"
]
}
]
}, - {
- "type": "payment_information",
- "data": [
- {
- "average_transaction_value": "301-601",
- "most_expensive_product_price": "1000",
- "projected_sales": "4000",
- "gift_card": false,
- "gift_card_revenue_percentage": 0,
- "subscriptions": false,
- "subscriptions_revenue_percentage": 0,
- "international_sales": true,
- "international_sales_tax": true,
- "international_sales_tax_revenue_percentage": 24.5,
- "merchant_category_code": "7372",
- "payment_purpose": "Subscription of computer services",
}
]
}, - {
- "type": "ultimate_beneficial_ownership",
- "data": [
- {
- "name": "John Doe",
- "birth_date": "1984-03-27",
- "country": "NO",
- "percent_shares": 24.4,
- "other_factor": false,
- "other_factor_reason": false,
- "confirm_correct": false
}
]
}, - {
- "type": "signatory",
- "data": [
- {
- "name": "John Doe",
- "birth_date": "1984-03-27",
- "email": "john.doe@example.com",
- "title": "CEO",
- "country": "NO"
}
]
}, - {
- "type": "politically_exposed_person",
- "data": [
- {
- "politically_exposed_person": false,
- "affiliated_to_politically_exposed_person": false
}
]
}, - {
- "type": "form_submitter",
- "data": [
- {
- "name": "John Doe",
- "birth_date": "1984-03-27",
- "email": "john.doe@example.com",
- "role": "CEO"
}
]
}
], - "attachments": [
- {
- "id": "PQ1230483.file.1493019345",
- "declaration_type": "agreement",
- "mime_type": "image/png",
- "description": "Copy of Bank statement",
}
], - "checks": [
- {
- "type": "signatory",
- "options": {
- "schedule": "R-1/P1M",
- "next_schedules": [
- "2016-10-01T12:00:00.000Z"
]
}, - "data": [
- {
- "flags": [
- {
- "severity": "WARNING",
- "code": "DATA_MANUAL_UPDATE",
- "fields": [
- "name",
- "birth_date"
]
}, - {
- "type": "ERROR",
- "code": "CONTRACT_NOT_SIGNED"
}, - {
- "type": "ERROR",
- "code": "DATA_MISMATCH",
- "fields": [
- "birth_date"
], - "details": [
- {
- "path": "birth_date",
- "value": "1980-01-02",
- "expected": "1980-01-01"
}
]
}
], - "ref": {
- "type": "signatory",
- "id": "34f97ef8-7f7b-4c89-81f8-a7a99af3721a"
}, - "updated_at": "2016-09-01T12:00:00.000Z",
- "status": "COMPLETED"
}
]
}
], - "current_information": [
- {
- "type": "credit_score",
- "data": [
- {
- "id": "0ea7b4c0-7cf0-4a76-9aa1-f78850eae6c3",
- "credit_limit": 10000,
- "credit_limit_currency": "NOK",
- "current_credit_score": {
- "grade": "A",
- "value": 100
}, - "previous_credit_score": {
- "grade": "A",
- "value": 100
}, - "payment_remarks": "No payment remarks",
- "created_at": "2023-05-26T13:21:45.639Z",
- "created_by": "Dintero/quickr",
- "source_type": "discovery"
}
]
}, - {
- "type": "company",
- "data": [
- {
- "name": "Dintero AS",
- "trade_name": "Dintero",
- "organization_number": "919656395",
- "country": "NO",
- "address_line": "Sandakerveien 138",
- "address_postal_code": "0484",
- "address_city": "Oslo",
- "created_at": "2023-05-26T10:33:45.639Z",
- "created_by": "John Doe <john.doe@example.com>",
- "source_type": "declaration"
}
]
}, - {
- "type": "bank_account",
- "data": [
- {
- "number": "86011117947",
- "type": "iban",
- "currency": "NOK",
- "country": "NO",
- "bank_name": "DNB Bank",
- "bank_identification_code": "459508",
- "created_at": "2023-05-26T10:33:45.639Z",
- "created_by": "John Doe <john.doe@example.com>",
- "source_type": "declaration"
}
]
}, - {
- "type": "product_service",
- "data": [
- {
- "product_id": "pid1",
- "name": "Product name",
- "description": "Product description",
- "prices": [
- "1.55% + 1kr (EU consumer cards)",
- "2.95% + 1kr (Non-EU consumer cards)"
], - "created_at": "2023-05-26T10:33:45.639Z",
- "created_by": "John Doe <john.doe@example.com>",
- "source_type": "declaration"
}
]
}, - {
- "type": "payment_information",
- "data": [
- {
- "average_transaction_value": "301-601",
- "most_expensive_product_price": "1000",
- "projected_sales": "4000",
- "gift_card": false,
- "gift_card_revenue_percentage": 0,
- "subscriptions": false,
- "subscriptions_revenue_percentage": 0,
- "international_sales": true,
- "international_sales_tax": true,
- "international_sales_tax_revenue_percentage": 24.5,
- "merchant_category_code": "7372",
- "payment_purpose": "Subscription of computer services",
- "created_at": "2023-05-26T10:33:45.639Z",
- "created_by": "John Doe <john.doe@example.com>",
- "source_type": "declaration"
}
]
}, - {
- "type": "ultimate_beneficial_ownership",
- "data": [
- {
- "name": "John Doe",
- "birth_date": "1984-03-27",
- "country": "NO",
- "percent_shares": 24.4,
- "other_factor": false,
- "other_factor_reason": false,
- "confirm_correct": false,
- "created_at": "2023-05-26T10:33:45.639Z",
- "created_by": "John Doe <john.doe@example.com>",
- "source_type": "declaration"
}
]
}, - {
- "type": "signatory",
- "data": [
- {
- "name": "John Doe",
- "birth_date": "1984-03-27",
- "email": "john.doe@example.com",
- "title": "CEO",
- "country": "NO",
- "created_at": "2023-05-26T10:33:45.639Z",
- "created_by": "John Doe <john.doe@example.com>",
- "source_type": "declaration"
}
]
}, - {
- "type": "politically_exposed_person",
- "data": [
- {
- "politically_exposed_person": false,
- "affiliated_to_politically_exposed_person": false,
- "created_at": "2023-05-26T10:33:45.639Z",
- "created_by": "John Doe <john.doe@example.com>",
- "source_type": "declaration"
}
]
}, - {
- "type": "agreement",
- "data": [
- {
- "name": "Terms of service",
- "created_at": "2023-05-26T10:33:45.639Z",
- "created_by": "John Doe <john.doe@example.com>",
- "source_type": "declaration"
}
]
}, - {
- "type": "form_submitter",
- "data": [
- {
- "name": "John Doe",
- "birth_date": "1984-03-27",
- "email": "john.doe@example.com",
- "role": "CEO",
- "created_at": "2023-05-26T10:33:45.639Z",
- "created_by": "John Doe <john.doe@example.com>",
- "source_type": "declaration"
}
]
}
], - "notifications": [
- {
- "type": "DISCOVERIES_UPDATED",
- "created_at": "2019-08-24T14:15:22Z"
}
]
}
Update case before declaration
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
cid required | string = 19 characters ^[PT]Q\d{7}\.\S{9}$ Example: PQ1234567.ABCDEFGHI An id that uniquely identifies the case |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
object Template configuration | |
object (PublisherCreateData) | |
reference | string (CaseReference) Reference specified by the creator to identify the case in external systems |
Array of objects (Prefill) Prefills provided by case creator to prefill the declaration form | |
Array of objects (Section) non-empty Sections to include in the declaration form | |
Array of objects non-empty Checks to perform | |
object (CaseUrls) The URLs object containing the urls used for this case | |
object Set of key-value pairs that you can attach to an object.
Individual keys can be unset by posting an empty value to them.
All keys can be unset by posting an empty value to |
{- "template": {
- "id": "PQ1230483.template.493019345"
}, - "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345"
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "logo": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "icon": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "background": {
- "id": "PQ1230483.file.logo.1493019345"
}, - "pdf_logo": {
- "id": "PQ1230483.file.logo.1493019345"
}
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "bank_account",
- "data": [
- {
- "number": "86011117947",
- "type": "iban",
- "currency": "NOK",
- "country": "NO",
- "bank_name": "DNB Bank",
- "bank_identification_code": "459508"
}
]
}, - {
- "type": "company",
- "data": [
- {
- "name": "Dintero AS",
- "trade_name": "Dintero",
- "organization_number": "919656395",
- "country": "NO",
- "address_line": "Sandakerveien 138",
- "address_postal_code": "0484",
- "address_city": "Oslo"
}
]
}, - {
- "type": "payment_information",
- "data": [
- {
- "average_transaction_value": "301-601",
- "most_expensive_product_price": "1000",
- "projected_sales": "4000",
- "gift_card": false,
- "gift_card_revenue_percentage": 0,
- "subscriptions": false,
- "subscriptions_revenue_percentage": 0,
- "international_sales": true,
- "international_sales_tax": true,
- "international_sales_tax_revenue_percentage": 24.5,
- "merchant_category_code": "7372",
- "payment_purpose": "Subscription of computer services",
}
]
}, - {
- "type": "product_service",
- "data": [
- {
- "product_id": "pid1",
- "name": "Product name",
- "description": "Product description",
- "prices": [
- "1.55% + 1kr (EU consumer cards)",
- "2.95% + 1kr (Non-EU consumer cards)"
]
}
]
}, - {
- "type": "ultimate_beneficial_ownership",
- "data": [
- {
- "name": "John Doe",
- "country": "NO",
- "birth_date": "1984-03-27",
- "percent_shares": 24.4,
- "other_factor": false,
- "other_factor_reason": false,
- "confirm_correct": false
}
]
}, - {
- "type": "politically_exposed_person",
- "data": [
- {
- "politically_exposed_person": false,
- "affiliated_to_politically_exposed_person": false
}
]
}, - {
- "type": "signatory",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO",
- "country": "NO"
}
]
}, - {
- "type": "form_submitter",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO"
}
]
}, - {
- "type": "credit_score",
- "data": [
- {
- "credit_limit": 10000,
- "credit_limit_currency": "NOK",
- "current_credit_score": {
- "grade": "A",
- "value": 100
}, - "previous_credit_score": {
- "grade": "A",
- "value": 100
}, - "payment_remarks": "No payment remarks"
}
]
}
], - "sections": [
- {
- "type": "company"
}, - {
- "type": "bank_account"
}, - {
- "type": "payment_information"
}, - {
- "type": "ultimate_beneficial_ownership"
}, - {
- "type": "signatory"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "product_service"
}, - {
- "type": "agreement"
}, - {
- "type": "form_submitter"
}
], - "checks": [
- {
- "type": "company",
- "options": {
- "schedule": "R-1/P1Y"
}
}, - {
- "type": "bank_account"
}, - {
- "type": "ultimate_beneficial_ownership"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "sanction"
}, - {
- "type": "signatory"
}, - {
- "type": "agreement"
}
], - "metadata": {
- "property1": "string",
- "property2": "string"
}
}
{- "object": "case",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z",
- "updated_at": "2019-08-24T14:15:22Z",
- "updated_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "template": {
- "id": "PQ1230483.template.493019345",
- "updated_at": "2019-08-24T14:15:22Z"
}, - "publisher": {
- "name": "Dintero AS",
- "support_email": "support@dintero.com",
- "avatar": {
- "id": "PQ1230483.file.1493019345",
}, - "branding": {
- "theme": {
- "background_color": "#000000",
- "background_color_header": "#000000",
- "background_color_text": "#000000",
- "color_heading": "#000000",
- "color": "#000000",
- "color_highlight": "#000000",
- "color_link": "#000000",
- "text_decoration_link": "none",
- "background_color_button": "#000000",
- "color_button": "#000000",
- "border_radius_button": "6px",
- "font_weight_button": "100"
}, - "images": {
- "background": {
- "id": "PQ1230483.file.logo.1493019345",
},
}
}, - "language": "en"
}, - "reference": "REF-CASE-321",
- "prefills": [
- {
- "type": "bank_account",
- "data": [
- {
- "number": "86011117947",
- "type": "iban",
- "currency": "NOK",
- "country": "NO",
- "bank_name": "DNB Bank",
- "bank_identification_code": "459508"
}
]
}, - {
- "type": "company",
- "data": [
- {
- "name": "Dintero AS",
- "trade_name": "Dintero",
- "organization_number": "919656395",
- "country": "NO",
- "address_line": "Sandakerveien 138",
- "address_postal_code": "0484",
- "address_city": "Oslo"
}
]
}, - {
- "type": "payment_information",
- "data": [
- {
- "average_transaction_value": "301-601",
- "most_expensive_product_price": "1000",
- "projected_sales": "4000",
- "gift_card": false,
- "gift_card_revenue_percentage": 0,
- "subscriptions": false,
- "subscriptions_revenue_percentage": 0,
- "international_sales": true,
- "international_sales_tax": true,
- "international_sales_tax_revenue_percentage": 24.5,
- "merchant_category_code": "7372",
- "payment_purpose": "Subscription of computer services",
}
]
}, - {
- "type": "product_service",
- "data": [
- {
- "product_id": "pid1",
- "name": "Product name",
- "description": "Product description",
- "prices": [
- "1.55% + 1kr (EU consumer cards)",
- "2.95% + 1kr (Non-EU consumer cards)"
]
}
]
}, - {
- "type": "ultimate_beneficial_ownership",
- "data": [
- {
- "name": "John Doe",
- "country": "NO",
- "birth_date": "1984-03-27",
- "percent_shares": 24.4,
- "other_factor": false,
- "other_factor_reason": false,
- "confirm_correct": false
}
]
}, - {
- "type": "politically_exposed_person",
- "data": [
- {
- "politically_exposed_person": false,
- "affiliated_to_politically_exposed_person": false
}
]
}, - {
- "type": "signatory",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO",
- "country": "NO"
}
]
}, - {
- "type": "form_submitter",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO"
}
]
}, - {
- "type": "credit_score",
- "data": [
- {
- "credit_limit": 10000,
- "credit_limit_currency": "NOK",
- "current_credit_score": {
- "grade": "A",
- "value": 100
}, - "previous_credit_score": {
- "grade": "A",
- "value": 100
}, - "payment_remarks": "No payment remarks"
}
]
}
], - "sections": [
- {
- "type": "company"
}, - {
- "type": "bank_account"
}, - {
- "type": "payment_information"
}, - {
- "type": "ultimate_beneficial_ownership"
}, - {
- "type": "signatory"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "product_service"
}, - {
- "type": "agreement"
}, - {
- "type": "form_submitter"
}
], - "checks": [
- {
- "type": "company",
- "options": {
- "schedule": "R-1/P1Y"
}
}, - {
- "type": "bank_account"
}, - {
- "type": "ultimate_beneficial_ownership"
}, - {
- "type": "politically_exposed_person"
}, - {
- "type": "sanction"
}, - {
- "type": "signatory"
}, - {
- "type": "agreement"
}
], - "urls": {
}, - "metadata": {
- "property1": "string",
- "property2": "string"
}, - "id": "PQ1230485.493019345",
- "account_id": "PQ1230483",
- "status": "FORM_NOT_STARTED",
- "assignees": [
- {
- "user_id": "email.WDVBZEX",
- "object": "assignee",
- "account_id": "PQ1230483",
- "created_by": "473643b2-f1e4-4b23-81a7-af20b922f509",
- "created_at": "2019-08-24T14:15:22Z"
}
], - "risk_level": "LOW",
- "agent_determined_risk_level": "LOW",
- "agent_determined_status": "ACTIVE",
- "status_updated_at": "2019-08-24T14:15:22Z",
- "discoveries": [
- {
- "type": "credit_score",
- "data": [
- {
- "id": "string",
- "created_at": "string",
- "created_by": "string"
}
]
}
], - "declared_at": "2019-08-24T14:15:22Z",
- "form_submitter": {
- "name": "string",
- "birth_date": "2019-08-24",
- "email": "user@example.com",
- "title": "string"
}
}
aid required | string = 9 characters ^[PT]Q\d{7}$ Example: PQ1230482 An id that uniquely identifies the account |
cid required | string = 19 characters ^[PT]Q\d{7}\.\S{9}$ Example: PQ1234567.ABCDEFGHI An id that uniquely identifies the case |
Authorization required | string Example: Bearer eyJhbGciOiJIUzI1... The access token is a base64-encoded string that is required for all API calls. |
Content-Type required | string Example: application/json The content type must be |
{- "prefills": [
- {
- "type": "bank_account",
- "data": [
- {
- "number": "86011117947",
- "type": "iban",
- "currency": "NOK",
- "country": "NO",
- "bank_name": "DNB Bank",
- "bank_identification_code": "459508"
}
]
}, - {
- "type": "company",
- "data": [
- {
- "name": "Dintero AS",
- "trade_name": "Dintero",
- "organization_number": "919656395",
- "country": "NO",
- "address_line": "Sandakerveien 138",
- "address_postal_code": "0484",
- "address_city": "Oslo"
}
]
}, - {
- "type": "payment_information",
- "data": [
- {
- "average_transaction_value": "301-601",
- "most_expensive_product_price": "1000",
- "projected_sales": "4000",
- "gift_card": false,
- "gift_card_revenue_percentage": 0,
- "subscriptions": false,
- "subscriptions_revenue_percentage": 0,
- "international_sales": true,
- "international_sales_tax": true,
- "international_sales_tax_revenue_percentage": 24.5,
- "merchant_category_code": "7372",
- "payment_purpose": "Subscription of computer services",
}
]
}, - {
- "type": "product_service",
- "data": [
- {
- "product_id": "pid1",
- "name": "Product name",
- "description": "Product description",
- "prices": [
- "1.55% + 1kr (EU consumer cards)",
- "2.95% + 1kr (Non-EU consumer cards)"
]
}
]
}, - {
- "type": "ultimate_beneficial_ownership",
- "data": [
- {
- "name": "John Doe",
- "country": "NO",
- "birth_date": "1984-03-27",
- "percent_shares": 24.4,
- "other_factor": false,
- "other_factor_reason": false,
- "confirm_correct": false
}
]
}, - {
- "type": "politically_exposed_person",
- "data": [
- {
- "politically_exposed_person": false,
- "affiliated_to_politically_exposed_person": false
}
]
}, - {
- "type": "signatory",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO",
- "country": "NO"
}
]
}, - {
- "type": "form_submitter",
- "data": [
- {
- "name": "Bob Dob",
- "birth_date": "1984-02-12",
- "email": "bob.dob@example.com",
- "title": "CEO"
}
]
}, - {
- "type": "credit_score",
- "data": [
- {
- "credit_limit": 10000,
- "credit_limit_currency": "NOK",
- "current_credit_score": {
- "grade": "A",
- "value": 100
}, - "previous_credit_score": {
- "grade": "A",
- "value": 100
}, - "payment_remarks": "No payment remarks"