Create fact find session
This endpoint allows you to create a new fact find session for a client. If the company has the adviser field enforced, the client and related client should both have an adviser set.
        POST
    /api/v2/clients/backoffice/{BackOfficeID}/factfind/session
  
  curl \
 --request POST 'https://api.fincalc.co.uk/api/v2/clients/backoffice/{BackOfficeID}/factfind/session' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"SessionType":"client","BackOfficeAccountID":"E93EE908-5FF2-4D4C-9723-D8E1D7F805F5"}'
    
        Request examples
  
  {
  "SessionType": "client",
  "BackOfficeAccountID": "E93EE908-5FF2-4D4C-9723-D8E1D7F805F5"
}
        Response examples (200)
  
  {
  "success": true,
  "data": {
    "URL": "https://fincalc.co.uk/portal/login/factfind/AB8A075D-F481-4056-AF3D-67C75F4600B2/256",
    "ExpiryDate": "2023-05-04 12:10:01"
  }
}
        Response examples (422)
  
  {
  "success": false,
  "message": "Validation Error",
  "data": {
    "SessionType": [
      "The session type is required."
    ]
  }
}
        Response examples (403)
  
  {
  "success": false,
  "message": "You do not have permission to view that client."
}
        Response examples (404)
  
  {
  "success": false,
  "message": "Client not found."
}
        Response examples (500)
  
  {
  "success": false,
  "message": "Internal server error."
}