Landmark Information Group · Arazzo Workflow

Quote to conveyancing instruction

Version 1.0.0

Create a conveyancing quote, complete it with a person, property address and product details, produce the quote PDF and instruct a panel conveyancer.

1 workflow 1 source API 1 provider
View Spec View on GitHub Real EstateUnited KingdomPropTechProperty DataConveyancingLand RegistryGeospatialValuationAnti-Money LaunderingPlanning DataMortgageArazzoWorkflows

Provider

landmark-information

Workflows

quote-to-instruction
Introducer flow: quote, complete, PDF, instruct. The instruct step engages a conveyancer on the client behalf - gate it behind explicit human confirmation.
6 steps inputs: instructRequest, person, productDetails, propertyAddress, quoteRequest outputs: quoteId
1
createQuote
conveyances-experience-quote-create
2
addPerson
conveyances-experience-quote-person-create
3
setPropertyAddress
conveyances-experience-quote-address-update
4
setProductDetails
conveyances-experience-quote-product-details-update
5
downloadQuotePdf
conveyances-experience-quote-pdf-download
6
instructQuote
conveyances-experience-quote-instruct
Point of no return - the quote becomes a live case and a conveyancer is engaged.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Quote to conveyancing instruction
  version: 1.0.0
  summary: Create a conveyancing quote, complete it with a person, property address and product details,
    produce the quote PDF and instruct a panel conveyancer.
sourceDescriptions:
- name: conveyancing
  url: ../openapi/landmark-information-conveyancing-experience-api-openapi.yml
  type: openapi
workflows:
- workflowId: quote-to-instruction
  summary: 'Introducer flow: quote, complete, PDF, instruct. The instruct step engages a conveyancer on
    the client behalf - gate it behind explicit human confirmation.'
  inputs:
    type: object
    required:
    - quoteRequest
    - person
    - propertyAddress
    - productDetails
    - instructRequest
    properties:
      quoteRequest:
        type: object
      person:
        type: object
      propertyAddress:
        type: object
      productDetails:
        type: object
      instructRequest:
        type: object
  steps:
  - stepId: createQuote
    operationId: conveyances-experience-quote-create
    requestBody:
      contentType: application/json
      payload: $inputs.quoteRequest
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      quoteId: $response.body#/quoteId
  - stepId: addPerson
    operationId: conveyances-experience-quote-person-create
    parameters:
    - name: quoteId
      in: path
      value: $steps.createQuote.outputs.quoteId
    requestBody:
      contentType: application/json
      payload: $inputs.person
    successCriteria:
    - condition: $statusCode == 201
  - stepId: setPropertyAddress
    operationId: conveyances-experience-quote-address-update
    parameters:
    - name: quoteId
      in: path
      value: $steps.createQuote.outputs.quoteId
    requestBody:
      contentType: application/json
      payload: $inputs.propertyAddress
    successCriteria:
    - condition: $statusCode == 200
  - stepId: setProductDetails
    operationId: conveyances-experience-quote-product-details-update
    parameters:
    - name: quoteId
      in: path
      value: $steps.createQuote.outputs.quoteId
    requestBody:
      contentType: application/json
      payload: $inputs.productDetails
    successCriteria:
    - condition: $statusCode == 200
  - stepId: downloadQuotePdf
    operationId: conveyances-experience-quote-pdf-download
    parameters:
    - name: quoteId
      in: path
      value: $steps.createQuote.outputs.quoteId
    successCriteria:
    - condition: $statusCode == 200
  - stepId: instructQuote
    operationId: conveyances-experience-quote-instruct
    description: Point of no return - the quote becomes a live case and a conveyancer is engaged.
    parameters:
    - name: quoteId
      in: path
      value: $steps.createQuote.outputs.quoteId
    requestBody:
      contentType: application/json
      payload: $inputs.instructRequest
    successCriteria:
    - condition: $statusCode == 201
  outputs:
    quoteId: $steps.createQuote.outputs.quoteId