openapi: 3.2.0 info: version: 0.1.0 title: Whitespace Platform Version API description:
Last update 29th May 2025

Our intention is to cover the API calls most of use to those wanting to integrate external systems to the Whitespace Platform. We will give some descriptions about usage, but put full detail in standalone documents at https://apidocs.whitespace.co.uk/. We intend to have the published endpoints and schemas documented to the level that the code generated can be used safely and without modification to call our APIs safely.

Calls exclusive to brokers or underwriters have a comment of Broker Only and Underwriter Only respectively. All other calls work for both, but functionality might depend on the stage the risk is at, or other contextual factors.
Where certain properties refer to RootID or similar, they are actually referring to the ID of the entire slip, encompassing all stages and instances of the contract. This is a unique 38-character reference starting with the letters IC. If they mention riskID or docID or placingID, these are refering to the ID of a specific document or contract instance within the slip. This is always the RootID of the base slip followed by a double colon, ::, and further characters.
Once your Integration is ready to go live, the URL for production is https://www.whitespaceplatform.com
servers: - description: Sandbox Environment url: https://sandbox.whitespace.co.uk/ - description: Tess Environment url: https://tess.whitespace.co.uk/ - description: Beta Environment url: https://beta.whitespace.co.uk/ - description: Staging Environment url: https://staging.whitespace.co.uk/ security: - bearerAuth: [] tags: - name: Version paths: /api/version: get: summary: Version message for the latest build of the API library tags: - Version responses: '200': content: application/json: schema: type: object properties: revapiCommit: type: string description: commit of the api library example: 7ace78cb91d72b7fba303ebe50cb0c1e720abd61 buildDate: type: string description: timestamp of the build example: 2021-11-22@22:23:10 revapiCommitMessage: type: string description: commit message example: Merge pull request 112 riskLibraryCommit: type: string description: commit of the underlying business logic library example: 7ace78cb91d72b7fba303ebe50cb0c1e720abd61 description: Version message for the latest build of the API library components: securitySchemes: bearerAuth: type: http scheme: bearer bearerFormat: JWT