Breaking changes are listed where relevant. Breaking changes are any changes in resource paths, changing of payload structures, or fixing HTTP verbs and response codes. This may require development.
Info
Note -
Events are sent sequentially and in
realtime
real-time but upon receiving an event, a sequential order cannot be guaranteed.
ALL API endpoints have a 10MB hard restriction on the payload
...
New fields added to Client Model
Status
colour
Yellow
title
UK SANDBOX
Three new fields have been exposed in the Client Model
This extensionData is only available under the ARKEN application value.
New Client Search by Application Endpoint available
Status
colour
Yellow
title
UK PREPROD
Status
colour
Green
title
UK PROD
A new endpoint is available: /client/search/account/application
The endpoint will return an array of clients filtered by application type and the search query.
For large result sets, the pageRowsCount parameter can be set to an integer which will return that amount of Clients. Omitting this parameter will return ALL clients however, this can add process time to the result. We recommend setting this to 10 or less.
The application type is now mandatory to pass in when creating
Status
colour
Green
title
POST
or updating
Status
colour
Yellow
title
PUT
a client. The application will be in the response body.
If the client is from a CRM system set the application to ‘CRM’
Code Block
"application" : "CRM",
By setting the application to CRM, additional information can now be saved in the extensionData field. See the CRM Integration functionality to Client changelog
To create or update a normal Arken client set the application to ‘ARKEN’ as part of the Client Model
Code Block
"application" : "ARKEN",
...
Added CRM Integration functionality to Client
Status
colour
Yellow
title
UK PREPROD
Status
colour
Green
title
UK PROD
A client created in a CRM system should be created with the application set to ‘CRM’ as part of the Client Model
Code Block
"application" : "CRM",
This allows to pass in further CRM related fields:
The CRM Model. This is the name of the CRM Integration and is a constant value
The CRM Client ID can be used to save the client ID used in the CRM system
The CRM Matter ID is to add Matter references used when adding a document in Arken Professional
All field names are case-sensitive. CRMMatterId is an array and requires the block brackets in the request body.
...
Removed Occupation from Client Model
Status
colour
Yellow
title
UK PREPROD
Status
colour
Green
title
UK PROD
The occupation Client field is deprecated and removed from the Client Model. All Client API calls correctly reflect this Model change.
Code Block
...
"occupation": "string",
...
Updated DocumentData to correct content response
Status
colour
Yellow
title
UK PREPROD
Status
colour
Green
title
UK PROD
All /documentdata calls now correctly return the content field value as an empty JSON object.
Code Block
"content": {},
...
Added Current Document Key to DocumentData
...
The purpose of this change was to stop the /file GET method from creating an event, which in turn stops any polling from constantly creating repeating events.
See Public APIdocumentation for more details on calls and webhook events.